1EXP10(3) Linux Programmer's Manual EXP10(3)
2
3
4
6 exp10, exp10f, exp10l - base-10 exponential function
7
9 #define _GNU_SOURCE /* See feature_test_macros(7) */
10 #include <math.h>
11
12 double exp10(double x);
13 float exp10f(float x);
14 long double exp10l(long double x);
15
16 Link with -lm.
17
19 The exp10() function returns the value of 10 raised to the power of x.
20
22 On success, these functions return the base-10 exponential value of x.
23
24 For various special cases, including the handling of infinity and NaN,
25 as well as overflows and underflows, see exp(3).
26
28 See math_error(7) for information on how to determine whether an error
29 has occurred when calling these functions.
30
31 For a discussion of the errors that can occur for these functions, see
32 exp(3).
33
35 These functions first appeared in glibc in version 2.1.
36
38 These functions are GNU extensions.
39
41 cbrt(3), exp(3), exp2(3), log10(3), sqrt(3)
42
44 This page is part of release 3.53 of the Linux man-pages project. A
45 description of the project, and information about reporting bugs, can
46 be found at http://www.kernel.org/doc/man-pages/.
47
48
49
50GNU 2008-08-11 EXP10(3)