std::expm1

From cppreference.com
< cpp‎ | numeric‎ | math
 
 
 
Common mathematical functions
Functions
Basic operations
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
Exponential functions
(C++11)
expm1
(C++11)
(C++11)
(C++11)
Power functions
(C++11)
(C++11)
Trigonometric and hyperbolic functions
(C++11)
(C++11)
(C++11)
Error and gamma functions
(C++11)
(C++11)
(C++11)
(C++11)
Nearest integer floating point operations
(C++11)(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
Floating point manipulation functions
(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)
(C++11)
Classification/Comparison
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
Macro constants
(C++11)(C++11)(C++11)(C++11)(C++11)
 
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.

[edit] Parameters

arg - value of floating-point or Integral type

[edit] Return value

earg
-1

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

[edit] See also

returns e raised to the given power (ex)
(function)
(C++11)
natural logarithm (to base e) of 1 plus the given number
(function)
(C++11)
returns 2 raised to the given power (2x)
(function)
C documentation for expm1