summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
author0u0 <inkydragon@users.noreply.github.com>2018-08-31 12:13:02 +0800
committer0u0 <inkydragon@users.noreply.github.com>2018-08-31 12:13:02 +0800
commit0393e51669da1eaaf3c21d81b05bfdc67daa79a5 (patch)
treef96250f11e5f80fab071ea418656c05d949881e0
parent4d2626d98bfa5ada3a502cda15c416db16ceac5a (diff)
[en] Adjust statement
-rw-r--r--matlab.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/matlab.html.markdown b/matlab.html.markdown
index 9cf1f8a4..5790bcc6 100644
--- a/matlab.html.markdown
+++ b/matlab.html.markdown
@@ -222,9 +222,9 @@ A(:, 1) =[] % Delete the first column of the matrix
transpose(A) % Transpose the matrix, which is the same as:
A.' % Concise version of transpose (without taking complex conjugate)
-ctranspose(A) % Hermitian transpose the matrix
-% (the transpose, followed by taking complex conjugate of each element)
-A' % Concise version of complex transpose
+ctranspose(A) % Hermitian transpose the matrix, which is the same as:
+A' % Concise version of complex transpose
+ % (the transpose, followed by taking complex conjugate of each element)