transpose()
Instance Public methods
Returns the transpose of the matrix.
1 2 3 4 5 6 7 | Matrix[[ 1 , 2 ], [ 3 , 4 ], [ 5 , 6 ]] => 1 2 3 4 5 6 Matrix[[ 1 , 2 ], [ 3 , 4 ], [ 5 , 6 ]].transpose => 1 3 5 2 4 6 |
Please login to continue.