tags:

views:

60

answers:

2
[code that does not change the question snipped]
M = M';

What is M = M';?

+5  A: 

It is the transpose of the matrix M. See here

ShinTakezou
+1. But the noun is "transpose", with no 'd'.
Ben Voigt
Yes! That's it! I'll accept your answer in about 3 minutes (SO won't let me answer it yet).
jp2code
the transpose of a matrix is a transposed matrix, isn't it? :D ... I think mine is an italianism, since we say `la trasposta` (the transpose) or `la matrice trasposta` (adjective, transposed matrix), and both are the same and sounds like past participle (the first with the implicit noun "matrix") ... Changed it for a better english appearence!
ShinTakezou
+4  A: 

Note that ' is the CTRANSPOSE operator in MATLAB. If you don't want the complex conjugate, use .' which is the TRANSPOSE method.

Edric
adjoint matrix or (complex) conjugate transpose, for anyone interested in
ShinTakezou