Java Data Type Tutorial - 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.

// w w w  . ja  v  a 2s  .  com
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.