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 = 1.0000 + 1.0000i 2.0000 + 1.0000i 3.0000 - 2.0000i 4.0000 + 2.0000i --> transpose(A) ans = 1.0000 + 1.0000i 3.0000 - 2.0000i 2.0000 + 1.0000i 4.0000 + 2.0000i