Member of the linalgebra class.
c = ctranspose(a)
Computes the complex conjugate transpose of a matrix. ctranspose(a) is equivalent to a'.
| Name | Description |
| a | Specifies a matrix. |
| Name | Description |
| c | Returns the complex conjugate transpose of a. c is a matrix of the same size as a. |
A = [1-i, 3+4i; 5-7i, -i]
C = ctranspose(A)