C= ctranspose(A)
C = A'
| Parameter | Description |
|---|---|
| A | a variable |
| Parameter | Description |
|---|---|
| C | 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 |