1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-03-16 04:10:01 +01:00

Fix syntax highlight.

Fixes #587 (Instead of using #588)
This commit is contained in:
Adam Bard 2014-04-06 19:46:58 -07:00
parent 9b1f4f1cb3
commit 77f28824af

View File

@ -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