Returns the complex conjugate of a complex number.
Sample Usage
IMCONJUGATE("5+2i")
IMCONJUGATE("1+3i")
Syntax
IMCONJUGATE(complex_number)
- complex_number - The complex number whose conjugated complex complement is to be computed.
Examples
IMCONJUGATE("5+2i") returns a value of "5-2i".
IMCONJUGATE("1+3i") returns a value of "1-3i".
Notes
- The conjugate of a complex number is:
- a+bi = a-bi
- You can subtract two complex numbers only if they have the same suffix (i or j).