How to convert the following 4D matrix to 2D matrix?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
mohammed mahmoud
el 8 de Oct. de 2017
Comentada: Walter Roberson
el 18 de Jun. de 2018
I want to convert matrix (1,100,100,16384) to 2d matrix
1 comentario
Respuesta aceptada
Walter Roberson
el 8 de Oct. de 2017
reshape(YourMatrix, 100*100, [])
if you want 100*100 rows and 16384 columns as your output
2 comentarios
Walter Roberson
el 18 de Jun. de 2018
What size of matrix are you starting with, and what size do you want to end up with, and what order do you want the elements to end up in?
Más respuestas (0)
Ver también
Categorías
Más información sobre Numeric Types 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!