I have a hypothetical matrix say a =
1 2 3
2 4 5
3 5 6
in one command, how I can stack the first two columns vertically to have a=[1 2 3 2 4 5]'

3 comentarios

Niveen El Zayat
Niveen El Zayat el 14 de Jun. de 2018
I got it I may use linear index so the answer is a(1:6)'
the cyclist
the cyclist el 14 de Jun. de 2018
You could make this an answer (rather than a comment on the question).
Niveen El Zayat
Niveen El Zayat el 14 de Jun. de 2018
I left it as a comment because i am not quite satisfied with this answer, I leave the space to some one give me a more generic answer fit any dimension

Iniciar sesión para comentar.

 Respuesta aceptada

Guillaume
Guillaume el 14 de Jun. de 2018
Editada: Guillaume el 14 de Jun. de 2018
As you've figured out for a 3xN matrix, a(1:6)' would work. For an arbitrary sized MxN matrix:
reshape(a(:, 1:2), [], 1)

1 comentario

Niveen El Zayat
Niveen El Zayat el 14 de Jun. de 2018
thanks, this is the answer I was looking for, because the above one is very simple hypothetical example my main code is in terms of large dimension and i did try the reshape command but i failed many time

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 14 de Jun. de 2018

Comentada:

el 14 de Jun. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by