How to convert the following 4D matrix to 2D matrix?
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
mohammed mahmoud
am 8 Okt. 2017
Kommentiert: Walter Roberson
am 18 Jun. 2018
I want to convert matrix (1,100,100,16384) to 2d matrix
1 Kommentar
Akzeptierte Antwort
Walter Roberson
am 8 Okt. 2017
reshape(YourMatrix, 100*100, [])
if you want 100*100 rows and 16384 columns as your output
2 Kommentare
Walter Roberson
am 18 Jun. 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?
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Numeric Types finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!