OSDN Git Service

LDP: Update original to LDP v3.68
[linuxjm/LDP_man-pages.git] / original / man3 / clog10.3
1 .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
2 .\"
3 .\" %%%LICENSE_START(GPL_NOVERSION_ONELINE)
4 .\" Distributed under GPL
5 .\" %%%LICENSE_END
6 .\"
7 .TH CLOG10 3 2008-08-11 "" "Linux Programmer's Manual"
8 .SH NAME
9 clog10, clog10f, clog10l \- base-10 logarithm of a complex number
10 .SH SYNOPSIS
11 .BR "#define _GNU_SOURCE" "         /* See feature_test_macros(7) */"
12 .br
13 .B #include <complex.h>
14 .sp
15 .BI "double complex clog10(double complex " z );
16 .br
17 .BI "float complex clog10f(float complex " z );
18 .br
19 .BI "long double complex clog10l(long double complex " z );
20 .sp
21 Link with \fI\-lm\fP.
22 .SH DESCRIPTION
23 The call
24 .I clog10(z)
25 is equivalent to
26 .IR clog(z)/log(10) .
27 The other functions perform the same task for
28 .I float
29 and
30 .IR "long double" .
31
32 Note that
33 .I z
34 close to zero will cause an overflow.
35 .SH VERSIONS
36 These functions first appeared in glibc in version 2.1.
37 .SH CONFORMING TO
38 This function is a GNU extension.
39 It is reserved for future use in C99.
40 .SH SEE ALSO
41 .BR cabs (3),
42 .BR cexp (3),
43 .BR clog (3),
44 .BR clog2 (3),
45 .BR complex (7)
46 .SH COLOPHON
47 This page is part of release 3.68 of the Linux
48 .I man-pages
49 project.
50 A description of the project,
51 information about reporting bugs,
52 and the latest version of this page,
53 can be found at
54 \%http://www.kernel.org/doc/man\-pages/.