1CLOG10(3) complex math routines CLOG10(3)
2
3
4
6 clog10, clog10f, clog10l - base-10 logarithm of a complex number
7
9 #define _GNU_SOURCE
10 #include <complex.h>
11
12 double complex clog10(double complex z);
13 float complex clog10f(float complex z);
14 long double complex clog10l(long double complex z);
15
16 Link with -lm.
17
19 The call clog10(z) is equivalent to clog(z)/log(10). The other func‐
20 tions perform the same task for float and long double.
21
22 Note that z close to zero will cause an overflow.
23
25 This function is a GNU extension. It is reserved for future use in
26 C99.
27
29 cabs(3), cexp(3), clog(3), clog2(3), complex(7), feature_test_macros(7)
30
31
32
33 2002-07-28 CLOG10(3)