Java - StrictMath expm1(double) 方法



描述

Java StrictMath expm1(double x) 返回 ex -1。请注意,对于接近 0 的 x 值,expm1(x) + 1 的精确和比 exp(x) 更接近 ex 的真实结果。特殊情况

  • 如果参数是 NaN,则结果是 NaN。

  • 如果参数是正无穷大,则结果是正无穷大。

  • 如果参数是负无穷大,则结果是 -1.0。

  • 如果参数是零,则结果是与参数符号相同的零。

计算结果必须在精确结果的 1 ulp 以内。结果必须是半单调的。任何有限输入的 expm1 结果必须大于或等于 -1.0。请注意,一旦 ex - 1 的精确结果在极限值 -1 的 1/2 ulp 以内,则应返回 -1.0。

声明

以下是Java StrictMath expm1() 方法的声明

public static double expm1(double x)

参数

x − 在计算 ex -1 时要将 e 提升到的指数。

返回值

此方法返回 ex - 1 的值。

异常

正双精度值 expm1 示例

以下示例演示了 StrictMath expm1() 方法的使用。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 0.5;
   
      // print e raised at x
      System.out.println("StrictMath.expm1(" + x + ")=" + StrictMath.expm1(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

StrictMath.expm1(0.5)=0.6487212707001282

零双精度值 expm1 示例

以下示例演示了使用零值的 StrictMath expm1() 方法的另一种用法。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 0;
   
      // print e raised at x
      System.out.println("StrictMath.expm1(" + x + ")=" + StrictMath.expm1(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

StrictMath.expm1(0.0)=0.0

一值 expm1 示例

以下示例演示了使用一值的 StrictMath expm1() 方法的用法。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 1;
   
      // print e raised at x
      System.out.println("StrictMath.expm1(" + x + ")=" + StrictMath.expm1(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

StrictMath.expm1(1.0)=1.718281828459045
java_lang_strictmath.htm
广告