Compute base-e exponential of z, that is e (Euler's number, 2.7182818
) raised to the z power.
If no errors occur, e raised to the power of z, \(\small e^z\)ez
, is returned.
Errors are reported consistent with math_errhandling.
If the implementation supports IEEE floating-point arithmetic,
(±0,+0)
, the result is (1,+0)
(x,+â)
(for any finite x), the result is (NaN,NaN)
and FE_INVALID is raised.(x,NaN)
(for any finite x), the result is (NaN,NaN)
and FE_INVALID may be raised.(+â,+0)
, the result is (+â,+0)
(-â,y)
(for any finite y), the result is +0cis(y)
(+â,y)
(for any finite nonzero y), the result is +âcis(y)
(-â,+â)
, the result is (±0,±0)
(signs are unspecified)(+â,+â)
, the result is (屉,NaN)
and FE_INVALID is raised (the sign of the real part is unspecified)(-â,NaN)
, the result is (±0,±0)
(signs are unspecified)(+â,NaN)
, the result is (屉,NaN)
(the sign of the real part is unspecified)(NaN,+0)
, the result is (NaN,+0)
(NaN,y)
(for any nonzero y), the result is (NaN,NaN)
and FE_INVALID may be raised(NaN,NaN)
, the result is (NaN,NaN)
where \(\small{\rm cis}(y)\)cis(y) is \(\small \cos(y)+{\rm i}\sin(y)\)cos(y) + i sin(y).
[edit] NotesThe complex exponential function \(\small e^z\)ez
for \(\small z = x + {\rm i}y\)z = x+iy equals \(\small e^x {\rm cis}(y)\)ex
cis(y), or, \(\small e^x (\cos(y)+{\rm i}\sin(y))\)ex
(cos(y) + i sin(y)).
The exponential function is an entire function in the complex plane and has no branch cuts.
The following have equivalent results when the real part is 0:
In this case exp
can be about 4.5x slower. One of the other forms should be used instead of calling exp
with an argument whose real part is literal 0. There is no benefit in trying to avoid exp
with a runtime check of z.real() == 0 though.
Output:
exp(i * pi) = (-1.000000,0.000000)[edit] See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4