Returns the transposed matrix.
Accepts any mxn matrix.
DEPRECATED. Use matrixTranspose instead.
_matrix | mxn matrix to transpose. ARRAY |
_returnMatrix | nxm matrix ARRAY |
// returns the transposed matrix [[1,3,2], [2,1,3], [3,2,1]] [[[1,2,3], [3,1,2], [2,3,1]]] call CBA_fnc_matrixTranspose;
Kyle Kotowick, Kex