TransposeMatrixTransposes a matrix | |||||
Arguments
Return ValueThe transposed matrix m1 is returned.ExplanationThe transpose of matrix m0 is calculated and the result is placed in matrix m1.The argument format is as follows: m0->m[i][j] : (1,3,12) m1->m[i][j] : (1,3,12) See AlsoMATRIX |