std::expm1
From cppreference.com
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.