mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
[en] Adjust statement
This commit is contained in:
parent
4d2626d98b
commit
0393e51669
@ -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)
|
||||
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)
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user