IMDIV

IMDIV(inumber1, inumber2)

Returns the quotient of two complex numbers.

inumber1The complex numerator or dividend.
inumber2The complex denominator or divisor.

REMARKS
* If "inumber1" or "inumber2" are 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=IMDIV("-238+240i", "10+24i") = 5+12i
2=IMDIV("-238+240j", "10+24j") = 5+12j
3=IMDIV("240i", "10") = 24i
4=IMDIV("-238+240i", "10+24j") = #NUM!
5=IMDIV("some text", "10+24j") = #NUM!


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