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:
    • IMCONJUGATE Equation

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

1AB
2FormulaResult
3=IMCONJUGATE("3+4i")3-4i
4=IMCONJUGATE(COMPLEX(-2, -5, "j"))-2+5j