Section: Array Generation and Manipulations
y = transpose(x)
and is a synonym for y = x.'
.
--> A = [1+i,2+i;3-2*i,4+2*i] A = <complex> - size: [2 2] Columns 1 to 2 1+ 1 i 2+ 1 i 3 -2 i 4+ 2 i --> transpose(A) ans = <complex> - size: [2 2] Columns 1 to 2 1+ 1 i 3 -2 i 2+ 1 i 4+ 2 i