IMEXP

IMEXP(inumber)

Returns the exponential of a complex number.

inumberThe complex number for which you want the exponential.

REMARKS
* If "inumber" is not in the form x + yi or x + yj, then #NUM! is returned.
* You can use the EXP function to return the exponential number raised to a particular power.
* You can use the IMLN function to return the natural logarithm of a complex number.
* 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=IMEXP("1+i") = 1.46869393991589+2.28735528717884i
2=IMEXP("1+j") = 1.46869393991589+2.28735528717884j
3=IMEXP("i") = 0.54030230586814+0.841470984807897i
4=IMEXP("1") = 2.718
5=TEXT(IMEXP("1")-EXP(1), "0.000") = 0.000
6=IMEXP("some text") = #NUM!


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