<< colon | Operators | eq >> |
C= ctranspose(A) |
C = A' |
a variable
result: complex conjugate transpose of A.
C = ctranspose(A) returns the complex conjugate transpose of A.
A = 3
B = A'
A = -i
B = A'
A = sparse(eye(3, 4) * i)
B = A'
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET