Merge pull request #869 from harrymt/patch-1

Temp fix for Matlab syntax highlighting
This commit is contained in:
ven 2014-11-18 11:23:38 +01:00
commit cd9d68e35b

View File

@ -200,7 +200,7 @@ A(1, :) =[] % Delete the first row of the matrix
A(:, 1) =[] % Delete the first column of the matrix A(:, 1) =[] % Delete the first column of the matrix
transpose(A) % Transpose the matrix, which is the same as: transpose(A) % Transpose the matrix, which is the same as:
A' A one
ctranspose(A) % Hermitian transpose the matrix ctranspose(A) % Hermitian transpose the matrix
% (the transpose, followed by taking complex conjugate of each element) % (the transpose, followed by taking complex conjugate of each element)