Calculator Function Refrence

Function Reference >Calculator Function Reference >Matricies>Transpose

Transpose

The transpose function, trans(), will create the transpose matrix of the matrix given.
inv({{1,2},{3,4}})=[[1 3][2 4]]
inv({{1,2},{3,4},{5,6}})=[[1 3 5][2 4 6]]