Owning Class: basic
Requires: MathScript RT Module
c = conjugate(a)
Legacy Name: conj
Computes the complex conjugates of the input elements.
| Name | Description |
|---|---|
| a | Specifies a numeric scalar, vector, or matrix. |
| Name | Description |
|---|---|
| c | Returns the complex conjugates of the elements in a. If a is real, c equals a. c is a scalar, vector, or matrix of the same size as a. |
A = [1+2i, 4i; -3-6i, -5i]
C = conjugate(A)