| CEXP(3) | Library Functions Manual | CEXP(3) |
cexp, cexpf,
cexpl — complex exponential
functions
Math Library (libm, -lm)
#include <complex.h>
double complex
cexp(double
complex z);
float complex
cexpf(float
complex z);
long double complex
cexpl(long
double complex z);
The
cexp(),
cexpf()
and
cexpl()
functions compute the exponential of z.
If z = x + iy, then
cexp(z) = exp(x) cos(y) + i exp(x) sin(y).
The cexp(),
cexpf() and cexpl()
functions return the exponential of z.
The cexp(),
cexpf() and cexpl()
functions conform to ISO/IEC 9899:1999
(“ISO C99”).
| June 7, 2025 | Debian |