diff options
author | Adam Bard <github@adambard.com> | 2014-04-06 19:46:58 -0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2014-04-06 19:46:58 -0700 |
commit | 77f28824af30ae86c89a4785439c65bd5a623a8a (patch) | |
tree | cddec9f8a19a1c75edaffac5975eb6f4207e1027 | |
parent | 9b1f4f1cb37a327d60a830196735f9d01d23294e (diff) |
Fix syntax highlight.
Fixes #587 (Instead of using #588)
-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 |