MATLAB: I have 3942*1 matrix and i want to change this into 73*54 matrix . How can i do this

change matrix size

after changing matrix size i want to show them as an image .

Best Answer

A - matrix [3942 x 1]
out = reshape(A,73,[]);