当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Math.expm1()用法及代码示例


java.lang.Math.expm1() 用于返回欧拉数 e 的 double 值的幂并从它减去一个。这里,e 是一个欧拉数,它大约等于 2.718281828459045。

用法

public static double expm1(double x)

参数

x = 在 e 的计算中将 e 提升到的 index x-1.

返回

它返回 e 的值x-1
  • 如果参数是正或负双精度值,此方法将返回输出。
  • 如果参数是 Positive Infinity,则此方法将返回 Positive Infinity。
  • 如果参数为 Negative Infinity,则此方法将返回 -1.0。
  • 如果参数为零,则此方法将返回与参数相同符号的零。
  • 如果参数为 NaN,则此方法将返回 NaN。

例子1

public class Expm1Example1
{
    public static void main(String[] args) 
    {
        double a = 2.0;
        // return {(2.718281828459045) power of 2} - 1
        System.out.println(Math.expm1(a));
  }
}

输出:

6.38905609893065

例子2

public class Expm1Example2
{
    public static void main(String[] args) 
    {
        double a = -7.0;
        // return {(2.718281828459045) power of -7} - 1
        System.out.println(Math.expm1(a));
    }
}

输出:

-0.9990881180344455

例子3

public class Expm1Example3
{
    public static void main(String[] args) 
    {
        double a = 0.0;
        // Input Zero, Output Zero
        System.out.println(Math.expm1(a));
    }
}

输出:

0.0

示例 4

public class Expm1Example4
{
    public static void main(String[] args) 
    {
        double a = 1.0 / 0;
        // Input positive Infinity, Output positive Infinity
        System.out.println(Math.expm1(a));
    }
}

输出:

Infinity

例 5

public class Expm1Example5
{
    public static void main(String[] args) 
    {
        double a = -1.0 / 0;
        // Input negative Infinity, Output -1
        System.out.println(Math.expm1(a));
    }
}

输出:

-1.0

例 6

public class Expm1Example6
{
    public static void main(String[] args) 
    {
        double a = 0.0 / 0;
        // Input NaN, Output NaN
        System.out.println(Math.expm1(a));
    }
}

输出:

NaN






相关用法


注:本文由纯净天空筛选整理自 Java Math.expm1() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。