Home
Main website
Display Sidebar
Hide Ads
Recent Changes
View Source:
log10(3)
Edit
PageHistory
Diff
Info
LikePages
EXP !!!EXP NAME SYNOPSIS DESCRIPTION ERRORS CONFORMING TO SEE ALSO ---- !!NAME exp, log, log10, pow - exponential, logarithmic and power functions !!SYNOPSIS __#include __ ''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(3), cbrt(3) ----
One page links to
log10(3)
:
Man3l
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.