3 <<clog10>>, <<clog10f>>---complex base-10 logarithm
13 double complex clog10(double complex <[z]>);
14 float complex clog10f(float complex <[z]>);
18 These functions compute the complex base-10 logarithm of <[z]>.
19 <<clog10>> is equivalent to <<clog>>(<[z]>)/<<log>>(10).
21 <<clog10f>> is identical to <<clog10>>, except that it performs
22 its calculations on <<floats complex>>.
25 The clog10 functions return the complex base-10 logarithm value.
28 <<clog10>> and <<clog10f>> are GNU extensions.
36 clog10(double complex z
)
43 rr
= atan2(cimag(z
), creal(z
)) * M_IVLN10
;