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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。