Member of the basic class.
c = conj(a)
Computes the complex conjugates of the input elements.
| Name | Description |
| a | Specifies a matrix. |
| Name | Description |
| c | Returns the complex conjugates of the elements in a. If a is real, c equals a. c is a matrix of the same size as a. |
A = [1+2i, 4i; -3-6i, -5i]
C = conj(A)