summaryrefslogtreecommitdiffhomepage
path: root/matlab.html.markdown
diff options
context:
space:
mode:
authorHarry Mumford-Turner <harrymt@users.noreply.github.com>2014-11-18 10:19:11 +0000
committerHarry Mumford-Turner <harrymt@users.noreply.github.com>2014-11-18 10:19:11 +0000
commit1992190cd010c21115c00c84ae168d0c004023e2 (patch)
treecc094d78d5f261c192201c1f85918edfd26bb6f2 /matlab.html.markdown
parent5ec6d68989ef83222051a81fa93b0951859aba92 (diff)
Temp fix for Matlab syntax highlighting
The single quote messed up the rest of the file.
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 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)