How to reshape a matrix
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello , i've got a k by l by m by n by o matrix and i want to reshape it into a vector.. Any ideas?
0 comentarios
Respuesta aceptada
James Tursa
el 13 de Sept. de 2012
A = zeros(k,l,m,n,o);
B = A(:); % column vector
C = B.'; % row vector
For more general reshaping, see the reshape command.
0 comentarios
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices 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!