summaryrefslogtreecommitdiff
path: root/lib/libm/man/log.3
blob: 3a0ae493b65f604ea84b73a9ae8ab9c1eb35b0b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
.\" $NetBSD: log.3,v 1.3 2011/09/13 08:51:32 wiz Exp $
.\"
.\" Copyright (c) 2011 Jukka Ruohonen <jruohonen@iki.fi>
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\"    notice, this list of conditions and the following disclaimer in the
.\"    documentation and/or other materials provided with the distribution.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
.\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd September 13, 2011
.Dt LOG 3
.Os
.Sh NAME
.Nm log ,
.Nm logf ,
.Nm log10 ,
.Nm log10f ,
.Nm log1p ,
.Nm log1pf
.Nm log2 ,
.Nm log2f ,
.Nd logarithm functions
.Sh LIBRARY
.Lb libm
.Sh SYNOPSIS
.In math.h
.Ft double
.Fn log "double x"
.Ft float
.Fn logf "float x"
.Ft double
.Fn log10 "double x"
.Ft float
.Fn log10f "float x"
.Ft double
.Fn log1p "double x"
.Ft float
.Fn log1pf "float x"
.Ft double
.Fn log2 "double x"
.Ft float
.Fn log2f "float x"
.Sh DESCRIPTION
The following functions compute logarithms:
.Bl -bullet -offset 2n
.It
The
.Fn log
and
.Fn logf
functions return the natural logarithm.
.It
The
.Fn log10
and
.Fn log10f
functions return the base 10 logarithm.
.It
The
.Fn log1p
and
.Fn log1pf
functions return the natural logarithm of (1.0 +
.Fa x )
accurately even for very small values of
.Fa x .
.It
The
.Fn log2
and
.Fn log2f
functions return the base 2 logarithm.
.El
.Sh RETURN VALUES
Upon successful completion, the functions return the logarithm of
.Fa x
as descibed above.
Otherwise the following may occur:
.Bl -enum -offset indent
.It
If
.Fa x
is \*(Na, all functions return \*(Na.
.It
If
.Fa x
is positive infinity, all functions return
.Fa x .
If
.Fa x
is negative infinity, all functions return \*(Na.
.It
If
.Fa x
is +0.0 or -0.0, the
.Fn log ,
.Fn log10 ,
and
.Fn log2
families return either
.Dv -HUGE_VAL ,
.Dv -HUGE_VALF ,
or
.Dv -HUGE_VALL ,
whereas the
.Fn log1p
family returns
.Fa x .
.It
If
.Fa x
is +1.0, the
.Fn log ,
.Fn log10 ,
and
.Fn log2
families return +0.0.
If
.Fa x
is -1.0, the
.Fn log1p
family returns
.Dv -HUGE_VAL ,
.Dv -HUGE_VALF ,
or
.Dv -HUGE_VALL .
.El
.Pp
In addition, on a
.Tn VAX ,
.Va errno
is set to
.Er EDOM
and the reserved operand is returned
by
.Fn log
unless
.Fa x
\*[Gt] 0, by
.Fn log1p
unless
.Fa x
\*[Gt] \-1.
.Sh SEE ALSO
.Xr exp 3 ,
.Xr ilogb 3 ,
.Xr math 3
.Sh STANDARDS
The described functions conform to
.St -isoC-99 .
.Sh HISTORY
The history of the logarithm functions dates back to
.At v6 .