MATLAB: Extract a sub-matrix from a very big matrix

indexingmatrixmatrix manipulationseparation

I have a matrix of size 112 x 1200. I want to separate them into 6 matrices each of size 112 x 200. How can i do it?

Best Answer

reshape(a,[],200,6)
Related Question