mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
fix #3054
This commit is contained in:
parent
440247a597
commit
93a7d100c2
@ -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)
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user