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


Java Math.exp()用法及代碼示例


java.lang.Math.exp() 用於返回歐拉數 e 的 double 值次方。這裏,e 是一個歐拉數,它大約等於 2.718281828459045。

用法

public static double exp(double x)

參數

x = It is the exponent which raise to e

返回

它返回值 ex,其中 e 是自然對數的底數。
  • 如果參數是正或負雙精度值,此方法將返回輸出。
  • I如果參數為零,則此方法將返回 1.0。
  • I如果參數是正無窮大,這個方法將返回正無窮大。
  • I如果參數是負無窮大,這個方法將返回正零。
  • 如果參數為 NaN,則此方法將返回 NaN。

例子1

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

輸出:

7.38905609893065

例子2

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

輸出:

9.118819655545162E-4

例子3

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

輸出:

1.0

示例 4

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

輸出:

Infinity

例 5

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

輸出:

0.0

例 6

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

輸出:

NaN






相關用法


注:本文由純淨天空篩選整理自 Java Math.exp() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。