How to transpose a row into a column?

1.265 visualizaciones (últimos 30 días)
andrew
andrew el 19 de Nov. de 2013
Respondida: Imad Berjawi el 3 de Nov. de 2022
I have a 384x32 matrix and I would like to transpose it so that the row is a column corresponding to the values on the row for example:
original table:
  • a 1,2,3,4,5,6,7,8,
  • b 9,10,11,12,13,14,15,16
  • c 17,18,19,20,21,22,23,24
  • d etc..
Desired outcome:
  • a 1
  • a 2
  • a 3
  • a 4
etc

Respuestas (3)

Sean de Wolski
Sean de Wolski el 19 de Nov. de 2013
A = A';
or
A = A.';

BSantos
BSantos el 19 de Nov. de 2013
There is a function called transpose. Maybe it helps.

Imad Berjawi
Imad Berjawi el 3 de Nov. de 2022
A=[7,4,2;3,5,6;-1,2,1]

Categorías

Más información sobre Matrices and Arrays 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