Wiki

Clone wiki

symja_android_library / Symbols / Transpose

Transpose

Transpose(matrix)
transposes rows and columns in the matrix.

See:

Examples

>>> Transpose({{1, 2, 3}, {4, 5, 6}})
{{1, 4}, {2, 5}, {3, 6}} 

Related terms

CharacteristicPolynomial, ConjugateTranspose, Det, DiagonalMatrix, Dot, Eigenvalues, Eigenvectors, HilbertMatrix, IdentityMatrix, Inverse, JacobiMatrix, LinearSolve, LUDecomposition, MatrixPower, MatrixQ,MatrixRank, NullSpace, SingularValueDecomposition, Tr, VandermondeMatrix, VectorQ

Updated