]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/log1p.3
CPU_SET.3, INFINITY.3, __ppc_get_timebase.3, __ppc_set_ppr_med.3, __ppc_yield.3,...
[thirdparty/man-pages.git] / man3 / log1p.3
CommitLineData
fea681da 1.\" Copyright 1995 Jim Van Zandt <jrv@vanzandt.mv.com>
caba2e47
MK
2.\" and Copyright 2008, Linux Foundation, written by Michael Kerrisk
3.\" <mtk.manpages@gmail.com>
fea681da 4.\"
93015253 5.\" %%%LICENSE_START(VERBATIM)
fea681da
MK
6.\" Permission is granted to make and distribute verbatim copies of this
7.\" manual provided the copyright notice and this permission notice are
8.\" preserved on all copies.
9.\"
10.\" Permission is granted to copy and distribute modified versions of this
11.\" manual under the conditions for verbatim copying, provided that the
12.\" entire resulting derived work is distributed under the terms of a
13.\" permission notice identical to this one.
c13182ef 14.\"
fea681da
MK
15.\" Since the Linux kernel and libraries are constantly changing, this
16.\" manual page may be incorrect or out-of-date. The author(s) assume no
17.\" responsibility for errors or omissions, or for damages resulting from
18.\" the use of the information contained herein. The author(s) may not
19.\" have taken the same level of care in the production of this manual,
20.\" which is licensed free of charge, as they might when working
21.\" professionally.
c13182ef 22.\"
fea681da
MK
23.\" Formatted or processed versions of this manual, if unaccompanied by
24.\" the source, must acknowledge the copyright and authors of this work.
4b72fb64 25.\" %%%LICENSE_END
fea681da
MK
26.\"
27.\" Modified 2002-07-27 by Walter Harms
28.\" (walter.harms@informatik.uni-oldenburg.de)
97986708 29.TH LOG1P 3 2016-03-15 "" "Linux Programmer's Manual"
fea681da 30.SH NAME
9a2d673e 31log1p, log1pf, log1pl \- logarithm of 1 plus argument
fea681da
MK
32.SH SYNOPSIS
33.nf
34.B #include <math.h>
68e4db0a 35.PP
fea681da 36.BI "double log1p(double " x );
d39541ec 37.br
fea681da 38.BI "float log1pf(float " x );
d39541ec 39.br
fea681da 40.BI "long double log1pl(long double " x );
68e4db0a 41.PP
fea681da 42.fi
cc4615cc 43Link with \fI\-lm\fP.
68e4db0a 44.PP
cc4615cc
MK
45.in -4n
46Feature Test Macro Requirements for glibc (see
47.BR feature_test_macros (7)):
48.in
68e4db0a 49.PP
cc4615cc 50.ad l
caba2e47 51.BR log1p ():
1b5ffa62 52.RS 4
636ed4d5
MK
53_ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L
54 || _XOPEN_SOURCE\ >=\ 500
cf7fa0a1 55.\" || _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED
636ed4d5
MK
56 || /* Since glibc 2.19: */ _DEFAULT_SOURCE
57 || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
1b5ffa62 58.RE
caba2e47 59.br
cc4615cc
MK
60.BR log1pf (),
61.BR log1pl ():
1b5ffa62 62.RS 4
636ed4d5
MK
63_ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L
64 || /* Since glibc 2.19: */ _DEFAULT_SOURCE
65 || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
1b5ffa62 66.RE
cc4615cc 67.ad b
fea681da 68.SH DESCRIPTION
5600f73a 69These functions return a value equivalent to
2d986c92
MK
70.nf
71
72 log (1 + \fIx\fP)
73
74.fi
5600f73a 75The result is computed in a way
022671eb
MK
76that is accurate even if the value of
77.I x
78is near zero.
caba2e47
MK
79.SH RETURN VALUE
80On success, these functions return the natural logarithm of
81.IR "(1\ +\ x)" .
847e0d88 82.PP
caba2e47
MK
83If
84.I x
85is a NaN,
86a NaN is returned.
847e0d88 87.PP
caba2e47
MK
88If
89.I x
90is positive infinity, positive infinity is returned.
847e0d88 91.PP
caba2e47
MK
92If
93.I x
efe294cb 94is \-1, a pole error occurs,
caba2e47
MK
95and the functions return
96.RB - HUGE_VAL ,
97.RB - HUGE_VALF ,
98or
99.RB - HUGE_VALL ,
100respectively.
847e0d88 101.PP
caba2e47
MK
102If
103.I x
104is less than \-1 (including negative infinity),
efe294cb 105a domain error occurs,
caba2e47
MK
106and a NaN (not a number) is returned.
107.\" POSIX.1 specifies a possible range error if x is subnormal
108.\" glibc 2.8 doesn't do this
109.SH ERRORS
110See
111.BR math_error (7)
112for information on how to determine whether an error has occurred
113when calling these functions.
114.PP
115The following errors can occur:
116.TP
117Domain error: \fIx\fP is less than \-1
523e7e59
AH
118.I errno
119is set to
120.BR EDOM
121(but see BUGS).
caba2e47
MK
122An invalid floating-point exception
123.RB ( FE_INVALID )
124is raised.
125.TP
126Pole error: \fIx\fP is \-1
523e7e59
AH
127.I errno
128is set to
129.BR ERANGE
130(but see BUGS).
caba2e47
MK
131A divide-by-zero floating-point exception
132.RB ( FE_DIVBYZERO )
133is raised.
d05cb848 134.SH ATTRIBUTES
eb71cf70
MK
135For an explanation of the terms used in this section, see
136.BR attributes (7).
137.TS
138allbox;
139lbw27 lb lb
140l l l.
141Interface Attribute Value
142T{
d05cb848
PH
143.BR log1p (),
144.BR log1pf (),
d05cb848 145.BR log1pl ()
eb71cf70
MK
146T} Thread safety MT-Safe
147.TE
47297adb 148.SH CONFORMING TO
9a74e018 149C99, POSIX.1-2001, POSIX.1-2008.
caba2e47 150.\" BSD
523e7e59
AH
151.SH BUGS
152Before version 2.22, the glibc implementation did not set
153.\" https://www.sourceware.org/bugzilla/show_bug.cgi?id=6792
154.I errno
155to
156.B EDOM
157when a domain error occurred.
847e0d88 158.PP
523e7e59
AH
159Before version 2.22, the glibc implementation did not set
160.\" https://www.sourceware.org/bugzilla/show_bug.cgi?id=6792
161.I errno
162to
163.B ERANGE
164when a range error occurred.
47297adb 165.SH SEE ALSO
fea681da
MK
166.BR exp (3),
167.BR expm1 (3),
168.BR log (3)