Owning Class: linalgebra
Requires: MathScript RT Module
c = cctranspose(a)
Legacy Name: ctranspose
Computes the complex conjugate transpose of a matrix. cctranspose(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 = cctranspose(A)