Create a matrix with specif size
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Guilherme Lopes de Campos
el 23 de Abr. de 2020
Comentada: Ameer Hamza
el 23 de Abr. de 2020
Hi MATLAB community,
I have a array with the size (360x1), I would like to organize into a matrix with sizes (30 rows and 12 columns) using the data available on the array, organize sequencially. Which the function I can use for made this?
Thank you very much
Guilherme
0 comentarios
Respuesta aceptada
Ameer Hamza
el 23 de Abr. de 2020
Editada: Ameer Hamza
el 23 de Abr. de 2020
See reshape()
B = reshape(A, 30, 12); % A is 360x1 and B is 30x12
It will organize the data column-wise, i.e., fill the first column, then second, and so on.
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing 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!