math.expm1() function

The math.expm1() function returns e**x - 1, the base-e exponential of x minus 1. It is more accurate than math.exp(x:x) - 1 when x is near zero.

*Output data type: Float*

  1. import "math"
  2. math.expm1(x: 1.22)
  3. // Returns 2.3871877336213343

Parameters

x

The value used in the operation.

*Data type: Float*

Special cases

  1. math.expm1(+Inf) // Returns +Inf
  2. math.expm1(-Inf) // Returns -1
  3. math.expm1(NaN) // Returns NaN

Very large values overflow to -1 or +Inf.