Matrix.Transpose($M$) takes a matrix $M$ and returns its transpose.
A = Matrix.New({{1,1+2*I},{3,4+I}}) B = Matrix.Transpose(A) print(B)
{ { 1 , 3 } , { 1 + 2 I , 4 + 1 I } }