Rearranging values in a matrix

1 visualización (últimos 30 días)
Gregory Olive
Gregory Olive el 11 de Mzo. de 2018
Comentada: Gregory Olive el 11 de Mzo. de 2018
I have a matrix that has 4 columns and I would like to rearrange it to have 5 columns so that the value in the second row first column becomes the value in the first row fifth column. So if the matrix was:
[1 2 3 4
5 1 2 3
4 5 1 2
3 4 5 1
2 3 4 5]
It would become:
[1 2 3 4 5
1 2 3 4 5
1 2 3 4 5
1 2 3 4 5]
Does anybody know how I could do this? Thanks in advance!

Respuestas (1)

Von Duesenberg
Von Duesenberg el 11 de Mzo. de 2018
Suppose your initial matrix is called oldMat:
reshape(oldMat', [5, 4])'
  3 comentarios
Von Duesenberg
Von Duesenberg el 11 de Mzo. de 2018
Thanks for the tip.
Gregory Olive
Gregory Olive el 11 de Mzo. de 2018
Awesome thanks!

Iniciar sesión para comentar.

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by