change array into matrix
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Anusha
el 1 de Feb. de 2014
Comentada: Anusha
el 1 de Feb. de 2014
How to write a 4 values in rectangular grid a=[8 4 6 2]
it will become
a=
8 4
6 2
0 comentarios
Respuesta aceptada
Mischa Kim
el 1 de Feb. de 2014
Editada: Mischa Kim
el 1 de Feb. de 2014
b = reshape(a,2,2)
3 comentarios
Mischa Kim
el 1 de Feb. de 2014
Is this another question or are you confirming that the command does what you need it to do?
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrices and 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!