This manual page is for Mac OS X version 10.6.3

If you are running a different version of Mac OS X, view the documentation locally:

  • In Terminal, using the man(1) command

Reading manual pages

Manual pages are intended as a quick reference for people who already understand a technology.

  • For more information about the manual page format, see the manual page for manpages(5).

  • For more information about this technology, look for other documentation in the Apple Reference Library.

  • For general information about writing shell scripts, read Shell Scripting Primer.



LOG(3)                                  BSD Library Functions Manual                                  LOG(3)

NAME
     log, log2, log10, log1p, -- logarithm functions

SYNOPSIS
     #include <math.h>

     double
     log(double x);

     long double
     logl(long double x);

     float
     logf(float x);

     double
     log2(double x);

     long double
     log2l(long double x);

     float
     log2f(float x);

     double
     log10(double x);

     long double
     log10l(long double x);

     float
     log10f(float x);

     double
     log1p(double x);

     long double
     log1pl(long double x);

     float
     log1pf(float x);

DESCRIPTION
     The log() function computes the value of the natural logarithm of argument x.

     The log2() function computes the value of the logarithm of argument x to base 2.

     The log10() function computes the value of the logarithm of argument x to base 10.

     The log1p() function computes the value of log(1+x) accurately even for very small values of x.

SPECIAL VALUES
     log(+-_) , log2(+-_) , and log10(+-_) return -infinity and raise the "divide-by-zero" floating-point
     exception.

     log(1) , log2(1) , and log10(1) return +0.

     log(x) , log2(x) , and log10(x) return a NaN and raise the "invalid" floating-point exception for x <
     0.

     log(+infinity) , log2(+infinity) , and log10(+infinity) return +infinity.

     log1p(+-_) returns +-0.

     log1p(-1) returns -infinity and raises the "divide-by-zero" floating-point exception.

     log1p(x) returns a NaN and raises the "invalid" floating-point exception for x < -1.

     log1p(+infinity) returns +infinity.

SEE ALSO
     math(3), exp(3), exp2(3), expm1(3), pow(3)

STANDARDS
     The log() , log2() , log10() , and log1p() functions conform to ISO/IEC 9899:1999(E).

4th Berkeley Distribution                     December 11, 2006                    4th Berkeley Distribution

Reporting Problems

The way to report a problem with this manual page depends on the type of problem:

Content errors
Report errors in the content of this documentation with the feedback links below.
Bug reports
Report bugs in the functionality of the described tool or API through Bug Reporter.
Formatting problems
Report formatting mistakes in the online version of these pages with the feedback links below.

Did this document help you? Yes It's good, but... Not helpful...