MATLAB: How can i reshape a matrix into a vector

arraymatrixreshapevector

Hello ,
How can i reshape an array like this [10 20 30
40 50 60]
to :
[40
50
60
10
20
30]

Best Answer

reshape(flipud(A).',[],1)