[en] Adjust statement

This commit is contained in:
0u0 2018-08-31 12:13:02 +08:00
parent 4d2626d98b
commit 0393e51669

View File

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