Java StrictMath.expm1(double x)
Syntax
StrictMath.expm1(double x) has the following syntax.
public static double expm1(double x)
Example
In the following code shows how to use StrictMath.expm1(double x) method.
//from w ww.j a v a 2 s.c om
public class Main {
public static void main(String[] args) {
double d1 = 0.0 , d2 = -(1.0/0.0), d3 = (1.0/0.0);
System.out.println(StrictMath.expm1(d1));
System.out.println(StrictMath.expm1(d2));
System.out.println(StrictMath.expm1(d3));
}
}
The code above generates the following result.