Transpose the rows and columns of a matrix
[C++]
void mtx_transpose<M>(
M& m
);
A reference to an object of type M that supports the imtx<T> interface.
This template function transposes the rows and columns of a matrix. The items in the matrix are transposed,
such that m.at(i, j) in the transposed matrix = m.at(j, i)
in the original matrix.
Header: plemtx.h