]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/log1p.3
acos.3, acosh.3, asin.3, asinh.3, atan.3, atan2.3, atanh.3, cabs.3, cacos.3, cacosh...
[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)
fe0fefbf 29.TH LOG1P 3 2015-03-02 "" "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>
35.sp
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 );
c13182ef 41.sp
fea681da 42.fi
cc4615cc
MK
43Link with \fI\-lm\fP.
44.sp
45.in -4n
46Feature Test Macro Requirements for glibc (see
47.BR feature_test_macros (7)):
48.in
49.sp
50.ad l
caba2e47 51.BR log1p ():
1b5ffa62
MK
52.RS 4
53_BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 500 ||
54_XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED || _ISOC99_SOURCE ||
55_POSIX_C_SOURCE\ >=\ 200112L;
56.br
57or
caba2e47 58.I cc\ -std=c99
1b5ffa62 59.RE
caba2e47 60.br
cc4615cc
MK
61.BR log1pf (),
62.BR log1pl ():
1b5ffa62
MK
63.RS 4
64_BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE ||
65_POSIX_C_SOURCE\ >=\ 200112L;
66.br
67or
cc4615cc 68.I cc\ -std=c99
1b5ffa62 69.RE
cc4615cc 70.ad b
fea681da 71.SH DESCRIPTION
5600f73a 72These functions return a value equivalent to
2d986c92
MK
73.nf
74
75 log (1 + \fIx\fP)
76
77.fi
5600f73a 78The result is computed in a way
022671eb
MK
79that is accurate even if the value of
80.I x
81is near zero.
caba2e47
MK
82.SH RETURN VALUE
83On success, these functions return the natural logarithm of
84.IR "(1\ +\ x)" .
85
86If
87.I x
88is a NaN,
89a NaN is returned.
90
91If
92.I x
93is positive infinity, positive infinity is returned.
94
95If
96.I x
efe294cb 97is \-1, a pole error occurs,
caba2e47
MK
98and the functions return
99.RB - HUGE_VAL ,
100.RB - HUGE_VALF ,
101or
102.RB - HUGE_VALL ,
103respectively.
104
105If
106.I x
107is less than \-1 (including negative infinity),
efe294cb 108a domain error occurs,
caba2e47
MK
109and a NaN (not a number) is returned.
110.\" POSIX.1 specifies a possible range error if x is subnormal
111.\" glibc 2.8 doesn't do this
112.SH ERRORS
113See
114.BR math_error (7)
115for information on how to determine whether an error has occurred
116when calling these functions.
117.PP
118The following errors can occur:
119.TP
120Domain error: \fIx\fP is less than \-1
121.\" .I errno
122.\" is set to
123.\" .BR EDOM .
124An invalid floating-point exception
125.RB ( FE_INVALID )
126is raised.
127.TP
128Pole error: \fIx\fP is \-1
129.\" .I errno
130.\" is set to
131.\" .BR ERANGE .
132A divide-by-zero floating-point exception
133.RB ( FE_DIVBYZERO )
134is raised.
135.PP
136These functions do not set
137.IR errno .
138.\" FIXME . Is it intentional that these functions do not set errno?
139.\" log(), log2(), log10() do set errno
140.\" Bug raised: http://sources.redhat.com/bugzilla/show_bug.cgi?id=6792
d05cb848 141.SH ATTRIBUTES
eb71cf70
MK
142For an explanation of the terms used in this section, see
143.BR attributes (7).
144.TS
145allbox;
146lbw27 lb lb
147l l l.
148Interface Attribute Value
149T{
d05cb848
PH
150.BR log1p (),
151.BR log1pf (),
d05cb848 152.BR log1pl ()
eb71cf70
MK
153T} Thread safety MT-Safe
154.TE
47297adb 155.SH CONFORMING TO
9a74e018 156C99, POSIX.1-2001, POSIX.1-2008.
caba2e47 157.\" BSD
47297adb 158.SH SEE ALSO
fea681da
MK
159.BR exp (3),
160.BR expm1 (3),
161.BR log (3)