I want to convert matrix into vector
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
shimji k
am 26 Nov. 2020
Bearbeitet: shimji k
am 26 Nov. 2020
I want to convert matrix into vector.I have a matrix which contain noise of 434 images. The size of the noise is 512*512*434 i want to convert this into a vector that is 262144*434 .
How is this possible.Pls reply,Thanks in advance.
0 Kommentare
Akzeptierte Antwort
Andrei Bobrov
am 26 Nov. 2020
a - your array [512 x 512 x 434]
out = reshape(a,[],size(a,3))
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Resizing and Reshaping Matrices 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!