I think in programming vernacular, this operation would be called perhaps ravel or reshape more generally. say I have a vector:
\begin{bmatrix}a&b& c &d &e &f\end{bmatrix}
which I would like to convert into a 2D matrix. Let's arbitrarily say I'd like to ravel along the rows first (fill one row before moving to the next).
\begin{bmatrix} a&b \\ c&d \\ e&f\end{bmatrix}
Is there a series of multiplicative matrix transformations that performs this reshaping, and if so, what is the general name for this operation?