Defined in header <complex.h> | ||
---|---|---|
float complex cexpf( float complex z ); | (1) | (since C99) |
double complex cexp( double complex z ); | (2) | (since C99) |
long double complex cexpl( long double complex z ); | (3) | (since C99) |
Defined in header <tgmath.h> | ||
#define exp( z ) | (4) | (since C99) |
z
.z
has type long double complex
, cexpl
is called. if z
has type double complex
, cexp
is called, if z
has type float complex
, cexpf
is called. If z
is real or integer, then the macro invokes the corresponding real function (expf
, exp
, expl
). If z
is imaginary, the corresponding complex argument version is called.z | - | complex argument |
If no errors occur, e raised to the power of z
, ez
is returned.
Errors are reported consistent with math_errhandling.
If the implementation supports IEEE floating-point arithmetic,
cexp(conj(z)) == conj(cexp(z))
z
is ±0+0i
, the result is 1+0i
z
is x+∞i
(for any finite x), the result is NaN+NaNi
and FE_INVALID
is raised. z
is x+NaNi
(for any finite x), the result is NaN+NaNi
and FE_INVALID
may be raised. z
is +∞+0i
, the result is +∞+0i
z
is -∞+yi
(for any finite y), the result is +0cis(y)
z
is +∞+yi
(for any finite nonzero y), the result is +∞cis(y)
z
is -∞+∞i
, the result is ±0±0i
(signs are unspecified) z
is +∞+∞i
, the result is ±∞+NaNi
and FE_INVALID
is raised (the sign of the real part is unspecified) z
is -∞+NaNi
, the result is ±0±0i
(signs are unspecified) z
is +∞+NaNi
, the result is ±∞+NaNi
(the sign of the real part is unspecified) z
is NaN+0i
, the result is NaN+0i
z
is NaN+yi
(for any nonzero y), the result is NaN+NaNi
and FE_INVALID
may be raised z
is NaN+NaNi
, the result is NaN+NaNi
where cis(y) is cos(y) + i sin(y).
The complex exponential function ez
for z = x+iy equals to ex
cis(y), or, ex
(cos(y) + i sin(y)).
The exponential function is an entire function in the complex plane and has no branch cuts.
#include <stdio.h> #include <math.h> #include <complex.h> int main(void) { double PI = acos(-1); double complex z = cexp(I * PI); // Euler's formula printf("exp(i*pi) = %.1f%+.1fi\n", creal(z), cimag(z)); }
Output:
exp(i*pi) = -1.0+0.0i
(C99)(C99)(C99) | computes the complex natural logarithm (function) |
(C99)(C99) | computes e raised to the given power (\({\small e^x}\)ex) (function) |
C++ documentation for exp |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/c/numeric/complex/cexp