Java如何计算指数函数?

在数学中,指数函数是函数ex,其中e是使得函数ex等于自己的导数的数字(大约2.718281828)。该函数f(x) = ex在点x = 0处等于1。

package org.nhooo.example.math;

public class ExponentExample {

    public static void main(String[] args) {
        double x = 0.0d;

        // 计算e升到x(e ^ x)的幂
        double fx = Math.exp(x);

        // 计算e提高到x减1的幂(e ^ x-1)
        double fxm1 = Math.expm1(x);

        System.out.println("fx   = " + fx);
        System.out.println("fxm1 = " + fxm1);
    }
}