public static double expm1 (double x)

Returns ex -1. Note that for values of x near 0, the exact sum of expm1(x) + 1 is much closer to the true result of ex than exp(x).

Special cases:

The computed result must be within 1 ulp of the exact result. Results must be semi-monotonic. The result of expm1 for any finite input must be greater than or equal to -1.0. Note that once the exact result of e x - 1 is within 1/2 ulp of the limit value -1, -1.0 should be returned.

Parameters:
x    the exponent to raise e to in the computation of e x -1.

Returns:  the value e x - 1.

Since:  1.5