1CLOG10(3) Linux Programmer's Manual 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 These functions first appeared in glibc in version 2.1.
26
28 This function is a GNU extension. It is reserved for future use in
29 C99.
30
32 cabs(3), cexp(3), clog(3), clog2(3), complex(7), feature_test_macros(7)
33
35 This page is part of release 3.22 of the Linux man-pages project. A
36 description of the project, and information about reporting bugs, can
37 be found at http://www.kernel.org/doc/man-pages/.
38
39
40
41 2008-08-11 CLOG10(3)