Transpose operator. This returns the transpose of the matrix that precedes it. The returned matrix has the same elements as the transposed one, except that the rows and columns are switched.
a = [1, 2, 3; 4, 5, 6];
a.'
1 4
2 5
3 6
length. size. ones. zeros. setsize. transpose.