MATLAB: How do you stack (using colon) a 3 dimensional matrix

colonmatrixstack matrix columnvector

Hi
I have a 3 dimensional matrix A(:,:,K) which I want to stack all the columns per value of K
I haven't found the coding for a 3 dimensional matrix (otherwise I expect to have used B = A(:) which in this case doesn't seem to work

Best Answer

reshape(A, [size(A,1) * size(A,2), size(A,3)])
Related Question