How to convert a column back into matrix?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Explorer
am 23 Mär. 2016
Bearbeitet: Stephen23
am 23 Mär. 2016
A matrix can be converted in column using matrix(:) but how to convert it back into matrix of same order?
0 Kommentare
Akzeptierte Antwort
Guillaume
am 23 Mär. 2016
If you don't know what the original size of the matrix was, then you of course can't since matlab does not keep the information.
A = randi([1 20], 10, 20, 30);
B = A(:);
AA = reshape(B, 10, 20, 30);
isequal(A, AA) %will return true
Note that A(:) is equivalent to
reshape(A, [], 1)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrices and Arrays 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!