From 7e0f021a9aec35fd8e6725e87e3313b101d26f5e Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Sun, 27 Jan 2008 11:37:44 +0100 Subject: Initial import (2.0.2-6) --- reference/C/MAN/exp.htm | 98 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 reference/C/MAN/exp.htm (limited to 'reference/C/MAN/exp.htm') diff --git a/reference/C/MAN/exp.htm b/reference/C/MAN/exp.htm new file mode 100644 index 0000000..9b9cc1a --- /dev/null +++ b/reference/C/MAN/exp.htm @@ -0,0 +1,98 @@ +exp + +
+
+
+
+
+

EXP(3) Linux Programmer's Manual EXP(3) +

+ +

NAME +

exp, log, log10, pow - exponential, logarithmic and power + functions + +

SYNOPSIS +

#include <math.h> + + double exp(double x); + + double log(double x); + + double log10(double x); + + double pow(double x, double y); + +

DESCRIPTION +

The exp() function returns the value of e (the base of + natural logarithms) raised to the power of x. + + The log() function returns the natural logarithm of x. + + The log10() function returns the base-10 logarithm of x. + + The pow() function returns the value of x raised to the + power of y. + +

ERRORS +

The log() and log10() functions can return the following + errors: + + EDOM The argument x is negative. + + ERANGE The argument x is zero. The log of zero is not + defined. + + The pow() function can return the following error: + + EDOM The argument x is negative and y is not an integral + value. This would result in a complex number. + +

CONFORMING TO +

SVID 3, POSIX, BSD 4.3, ISO 9899 + +
+
+

SEE ALSO +

+sqrt, +cbrt, +

+
+
+
+
+
+
+
+
+
+
+
+
+

GNU June 16, 1993 1 +

+ +
+

+


+

+

+ + + + +
+Top + +Master Index + +Keywords + +Functions +
+
+

+


+ +This manual page was brought to you by mjl_man V-2.0 -- cgit v1.2.3-54-g00ecf