IMCONJUGATE

IMCONJUGATE(inumber)

Returns the complex conjugate of a complex number.

inumberThe complex number you want the conjugate of.

REMARKS
* If "inumber" is not in the form x + yi or x + yj, then #NUM! is returned.
* You can use the COMPLEX function to convert real and imaginary coefficients into a complex number.
* For the Microsoft documentation refer to support.microsoft.com
* For the Google documentation refer to support.google.com

 A
1=IMCONJUGATE("3+4i") = 3-4i
2=IMCONJUGATE("3+4j") = 3-4j
3=IMCONJUGATE("3") = 3
4=IMCONJUGATE("4i") = -4i
5=IMCONJUGATE("3+4k") = #NUM!
6=IMCONJUGATE("some text") = #NUM!


© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited Top