OSDN Git Service

(split) Import translated manuals from JM CVS Repository.
[linuxjm/LDP_man-pages.git] / original / man3 / exp.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\" and Copyright 2008, Linux Foundation, written by Michael Kerrisk
3 .\"     <mtk.manpages@gmail.com>
4 .\"
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\"
25 .\" References consulted:
26 .\"     Linux libc source code
27 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
28 .\"     386BSD man pages
29 .\" Modified 1993-07-24 by Rik Faith (faith@cs.unc.edu)
30 .\" Modified 1995-08-14 by Arnt Gulbrandsen <agulbra@troll.no>
31 .\" Modified 2002-07-27 by Walter Harms
32 .\"     (walter.harms@informatik.uni-oldenburg.de)
33 .\"
34 .TH EXP 3  2008-08-05  "" "Linux Programmer's Manual"
35 .SH NAME
36 exp, expf, expl \- base-e exponential function
37 .SH SYNOPSIS
38 .nf
39 .B #include <math.h>
40 .sp
41 .BI "double exp(double " x );
42 .br
43 .BI "float expf(float " x );
44 .br
45 .BI "long double expl(long double " x );
46 .fi
47 .sp
48 Link with \fI\-lm\fP.
49 .sp
50 .in -4n
51 Feature Test Macro Requirements for glibc (see
52 .BR feature_test_macros (7)):
53 .in
54 .sp
55 .ad l
56 .BR expf (),
57 .BR expl ():
58 _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE; or
59 .I cc\ -std=c99
60 .ad b
61 .SH DESCRIPTION
62 The
63 .BR exp ()
64 function returns the value of e (the base of natural
65 logarithms) raised to the power of \fIx\fP.
66 .SH RETURN VALUE
67 On success, these functions return the exponential value of
68 .IR x .
69
70 If
71 .I x
72 is a NaN,
73 a NaN is returned.
74
75 If
76 .I x
77 is positive infinity,
78 positive infinity is returned.
79
80 If
81 .I x
82 is negative infinity,
83 +0 is returned.
84
85 If the result underflows,
86 a range error occurs,
87 and zero is returned.
88
89 If the result overflows,
90 a range error occurs,
91 and the functions return
92 .RB + HUGE_VAL ,
93 .RB + HUGE_VALF ,
94 or
95 .RB + HUGE_VALL ,
96 respectively.
97 .SH ERRORS
98 See
99 .BR math_error (7)
100 for information on how to determine whether an error has occurred
101 when calling these functions.
102
103 The following errors can occur:
104 .TP
105 Range error, overflow
106 .I errno
107 is set to
108 .BR ERANGE .
109 An overflow floating-point exception
110 .RB ( FE_OVERFLOW )
111 is raised.
112 .TP
113 Range error, underflow
114 .I errno
115 is set to
116 .BR ERANGE .
117 An underflow floating-point exception
118 .RB ( FE_UNDERFLOW )
119 is raised.
120 .SH "CONFORMING TO"
121 C99, POSIX.1-2001.
122 The variant returning
123 .I double
124 also conforms to
125 SVr4, 4.3BSD, C89.
126 .SH "SEE ALSO"
127 .BR cbrt (3),
128 .BR cexp (3),
129 .BR exp10 (3),
130 .BR exp2 (3),
131 .BR sqrt (3)