diff options
author | ven <vendethiel@hotmail.fr> | 2014-11-18 11:23:38 +0100 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2014-11-18 11:23:38 +0100 |
commit | cd9d68e35b6428a7165b25e4f6e5980698bab964 (patch) | |
tree | cc094d78d5f261c192201c1f85918edfd26bb6f2 | |
parent | 5ec6d68989ef83222051a81fa93b0951859aba92 (diff) | |
parent | 1992190cd010c21115c00c84ae168d0c004023e2 (diff) |
Merge pull request #869 from harrymt/patch-1
Temp fix for Matlab syntax highlighting
-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 2b9077d5..9de41275 100644 --- a/matlab.html.markdown +++ b/matlab.html.markdown @@ -200,7 +200,7 @@ A(1, :) =[] % Delete the first row of the matrix A(:, 1) =[] % Delete the first column of the matrix transpose(A) % Transpose the matrix, which is the same as: -A' +A one ctranspose(A) % Hermitian transpose the matrix % (the transpose, followed by taking complex conjugate of each element) |