How to reshape matrices in Mathematica

Posted by speciousfool on Stack Overflow See other posts from Stack Overflow or by speciousfool
Published on 2010-03-18T06:42:48Z Indexed on 2010/03/30 0:53 UTC
Read the original article Hit count: 482

Filed under:

When manipulating matrices it is often convenient to change their shape. For instance, to turn an N x M sized matrix into a vector of length N X M. In MATLAB a reshape function exists:

RESHAPE(X,M,N) returns the M-by-N matrix whose elements are taken columnwise from X. An error results if X does not have M*N elements.

In the case of converting between a matrix and vector I can use the Mathematica function Flatten which takes advantage of Mathematica's nested list representation for matrices. As a quick example, suppose I have a matrix X:

4x4 matrix

With Flatten[X] I can get the vector {1,2,3,...,16}. But what would be far more useful is something akin to applying Matlab's reshape(X,2,8) which would result in the following Matrix:

4x4 matrix

This would allow creation of arbitrary matrices as long as the dimensions equal N*M. As far as I can tell, there isn't anything built in which makes me wonder if someone hasn't coded up a Reshape function of their own.

© Stack Overflow or respective owner

Related posts about mathematica