當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。