transpose(a)

Returns the transpose of matrix a.


See also conjugate inverse solve 


Example


a = ( 1, 2, ; 3, 1 )

1  2

3  1

transpose( a )

1  3

2  1