diff options
author | 0u0 <inkydragon@users.noreply.github.com> | 2018-08-30 19:00:20 +0800 |
---|---|---|
committer | 0u0 <inkydragon@users.noreply.github.com> | 2018-08-30 19:00:20 +0800 |
commit | 93a7d100c2d9f3831a9436b83f513624b99630f7 (patch) | |
tree | 0f506ef754a9c5a7163d78191d6ac8de00a878de /matlab.html.markdown | |
parent | 440247a59706603bd980016821ecd6a72a6182d1 (diff) |
fix #3054
Diffstat (limited to 'matlab.html.markdown')
-rw-r--r-- | matlab.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/matlab.html.markdown b/matlab.html.markdown index b88b1c03..9cf1f8a4 100644 --- a/matlab.html.markdown +++ b/matlab.html.markdown @@ -221,11 +221,11 @@ 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 one +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 -A.' % Concise version of transpose (without taking complex conjugate) + |