Returns the complex conjugate of a number.
Sample Usage
IMCONJUGATE("3+4i")
IMCONJUGATE("-2i")
Syntax
IMCONJUGATE(number)
number
- The complex number to calculate the conjugate for.
Notes
- The complex conjugate is defined as follows:
See also
COMPLEX
: The COMPLEX function creates a complex number, given real and imaginary coefficients.IMREAL
: Returns the real coefficient of a complex number.IMAGINARY
: Returns the imaginary coefficient of a complex number.
Examples
1 | A | B |
---|---|---|
2 | Formula | Result |
3 | =IMCONJUGATE("3+4i") |
3-4i |
4 | =IMCONJUGATE(COMPLEX(-2, -5, "j")) |
-2+5j |