EXP(3) Linux Programmer's Manual EXP(3)
NAME
exp, log, log10, pow - exponential, logarithmic and power functionsSYNOPSIS
#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
sqrt, cbrt,Russian Peasent Multiplication and Exponentiation
GNU June 16, 1993 1
Top | Master Index | Keywords | Functions |
file: /Techref/language/ccpp/cref/MAN/exp.htm, 2KB, , updated: 2021/6/13 10:54, local time: 2024/11/5 16:40,
3.15.4.135:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/Techref/language/ccpp/cref/MAN/exp.htm"> exp</A> |
Did you find what you needed? |