How to extract the 20th component of each row in a 5x25 matrix?

1 visualización (últimos 30 días)
scientist121
scientist121 el 15 de Nov. de 2021
Comentada: Tina el 15 de Nov. de 2021
How to extract the 20th component of each row in a 5x25 matrix?
  1 comentario
Tina
Tina el 15 de Nov. de 2021
20th component will mean 20th colunms values from all the rows .you will do array indexing by selecting all rows and 20 col
A=zeros(5,25) B=A(:,20)
: Means every element . And if you want only for first two rows you can use B=A(1:2,20)

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by