1CEXP2(3) complex math routines CEXP2(3)
2
3
4
6 cexp2, cexp2f, cexp2l - base-2 exponent of a complex number
7
9 #include <complex.h>
10
11 double complex cexp2(double complex z);
12 float complex cexp2f(float complex z);
13 long double complex cexp2l(long double complex z);
14
15 Link with -lm.
16
18 The function returns 2 raised to the power of z.
19
21 These function names are reserved for future use in C99.
22
24 Not yet in glibc, as at version 2.4.
25
27 cabs(3), cexp(3), clog10(3), complex(7)
28
29
30
31 2002-07-28 CEXP2(3)