summaryrefslogtreecommitdiffhomepage
path: root/matlab.html.markdown
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2014-04-06 19:46:58 -0700
committerAdam Bard <github@adambard.com>2014-04-06 19:46:58 -0700
commit77f28824af30ae86c89a4785439c65bd5a623a8a (patch)
treecddec9f8a19a1c75edaffac5975eb6f4207e1027 /matlab.html.markdown
parent9b1f4f1cb37a327d60a830196735f9d01d23294e (diff)
Fix syntax highlight.
Fixes #587 (Instead of using #588)
Diffstat (limited to 'matlab.html.markdown')
-rw-r--r--matlab.html.markdown2
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