Namespaces
Variants
Views
Actions

std::expm1

From cppreference.com
< cpp‎ | numeric‎ | math
Revision as of 19:19, 31 May 2013 by P12bot (Talk | contribs)

 
 
 
 
Defined in header <cmath>
float       expm1( float arg );
(since C++11)
double      expm1( double arg );
(since C++11)
long double expm1( long double arg );
(since C++11)
double      expm1( Integral arg );
(since C++11)

Computes the e (Euler's number, 2.7182818) raised to the given power arg, minus 1. This function is more accurate than the expression std::exp(arg)-1 if arg is close to zero.

Parameters

arg - floating point value

Return value

earg-1

If the result is too large for the underlying type, range error occurs and HUGE_VAL is returned.

See also

Template:cpp/numeric/math/dcl list expTemplate:cpp/numeric/math/dcl list log1pTemplate:cpp/numeric/math/dcl list exp2