how i reshape data matrix?

3 visualizaciones (últimos 30 días)
yasmeen hadadd
yasmeen hadadd el 27 de Sept. de 2016
Comentada: KSSV el 28 de Sept. de 2016
Hello;
h have a matrix with size 66x100 how i change it's size to 1x6600
thanks

Respuesta aceptada

José-Luis
José-Luis el 27 de Sept. de 2016
Editada: José-Luis el 27 de Sept. de 2016
bla = rand(66,100);
bla = bla(:)';
Please read the documentation on reshape

Más respuestas (1)

KSSV
KSSV el 27 de Sept. de 2016
Editada: KSSV el 27 de Sept. de 2016
A = rand(66,100) ;
A = A(:) ; % joins column by column
% if you want row by row
A = rand(66,100) ;
A = A' ;
A = A(:) ;
  2 comentarios
José-Luis
José-Luis el 27 de Sept. de 2016
That would give column vector and not a row vector.
KSSV
KSSV el 28 de Sept. de 2016
Transposing it gives a column vector.

Iniciar sesión para comentar.

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