MATLAB: 3D volume to 2D matrix conversion

image processingMATLAB

I have a 3D matrix of size 20*22*815 . What is the way that i can generate 2D matrix of 815 rows and 440(20*22) columns

Best Answer

A=permute(yourMatrix,[3,1,2]);
A=A(:,:);