Namespaces
Variants
Views
Actions

std::log1p

From cppreference.com
< cpp‎ | numeric‎ | math
Revision as of 15:25, 17 January 2012 by Cubbi (Talk | contribs)

Template:cpp/numeric/math/sidebar Template:ddcl list begin <tr class="t-dsc-header">

<td>
Defined in header <cmath>
</td>

<td></td> <td></td> </tr> <tr class="t-dcl ">

<td >
float       log1p( float arg );
</td>

<td class="t-dcl-nopad"> </td> <td > (since C++11) </td> </tr> <tr class="t-dcl ">

<td >
double      log1p( double arg );
</td>

<td class="t-dcl-nopad"> </td> <td > (since C++11) </td> </tr> <tr class="t-dcl ">

<td >
long double log1p( long double arg );
</td>

<td class="t-dcl-nopad"> </td> <td > (since C++11) </td> </tr> <tr class="t-dcl ">

<td >
double      log1p( Integral arg );
</td>

<td class="t-dcl-nopad"> </td> <td > (since C++11) </td> </tr> Template:ddcl list end

Computes the natural (base Template:cpp) logarithm of Template:cpp. This function is more precise than the expression Template:cpp if arg is close to zero.

Parameters

arg - floating point value

Return value

ln(1+arg)

Domain error occurs if arg is negative. Template:cpp is returned in that case.

Range error occurs if arg is Template:cpp. Template:cpp is returned in that case.

See also

Template:cpp/numeric/math/dcl list logTemplate:cpp/numeric/math/dcl list log10