15.1.1 Transpose of a matrix
The
tran
or
transpose
command finds the transpose of a matrix.
tran
takes
A
, a matrix.
tran(
A
)
returns the transpose matrix
A
T
of
A
.
Example
tran
([[1,2],[3,4]])
⎡
⎢
⎣
1
3
2
4
⎤
⎥
⎦