MATLAB: How to do this on matrix to change they look

matrixmatrix manipulation

if i have this matrix
A = [ 1 2 2 4 5 2
1 2 3 1 1 2
0 0 0 1 0 0 ]
how to convert it to be like that
A = [ 0 0 0 1 0 0
1 2 3 1 1 2
1 2 2 4 5 2 ]

Best Answer

flipud(A)