How to get the vector in a matrix (specific location)

1 visualización (últimos 30 días)
fyza affandi
fyza affandi el 17 de Nov. de 2018
Comentada: madhan ravi el 17 de Nov. de 2018
I have matrix A (8x4)
A= [ 1 0 0 0 0 0 0 0
2 0 0 0 0 0 0 0
3 0 0 0 0 0 0 0
4 5 6 7 8 9 10 11]
How can I get vector of B that start from row 4, column 2 till end?
B= [ 5 6 7 8 9 10 11]

Respuesta aceptada

madhan ravi
madhan ravi el 17 de Nov. de 2018
Editada: madhan ravi el 17 de Nov. de 2018
A= [ 1 0 0 0 0 0 0 0
2 0 0 0 0 0 0 0
3 0 0 0 0 0 0 0
4 5 6 7 8 9 10 11]
B = A(4,2:size(A,2))
  4 comentarios
fyza affandi
fyza affandi el 17 de Nov. de 2018
Thank you a lot!
madhan ravi
madhan ravi el 17 de Nov. de 2018
Anytime :)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Resizing and Reshaping Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by