Maxima Function
transpose (M)
Returns the transpose of M.
If M is a matrix, the return value is another matrix N
such that N[i,j] = M[j,i]
.
If M is a list, the return value is a matrix N
of length (m)
rows and 1 column, such that N[i,1] = M[i]
.
Otherwise M is a symbol,
and the return value is a noun expression 'transpose (M)
.