diff options
| -rw-r--r-- | matlab.html.markdown | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/matlab.html.markdown b/matlab.html.markdown index 15ff2303..9baefe68 100644 --- a/matlab.html.markdown +++ b/matlab.html.markdown @@ -181,7 +181,7 @@ size(A) % ans = 3 3  A(1, :) =[] % Delete the first row of the matrix -A' % Hermitian transpose the matrix  +ctranspose(A) % Hermitian transpose the matrix   % (the transpose, followed by taking complex conjugate of each element)  transpose(A) % Transpose the matrix, without taking complex conjugate | 
