From: mobileT83 T on
I would like to take a MxNxL matrix and get a M*NxL matrix. I know I can do this with two for loops

A = MxNxL
for ii = 1:N
for jj = 1:M

a = A(jj,ii,:);

end
end

but I was hoping to you a reshape tool. And I want to keep the order given in this for loop.

I found this but I don't know if it will help me... maybe I don't get it.
http://www.mathworks.com/matlabcentral/fileexchange/20255

Thanks

mobile