In mathematics, the exponential function is the function e
x
, where e
is the number (approximately 2.718281828) such that the function e
x
equals its own derivative. The function f(x) = e
x
at the point x = 0
is equal to 1
.
package org.kodejava.example.math;
public class ExponentExample {
public static void main(String[] args) {
double x = 0.0d;
// calculates e raised to the power of x (e^x)
double fx = Math.exp(x);
// calculates e raised to the power of x minus 1 (e^x - 1)
double fxm1 = Math.expm1(x);
System.out.println("fx = " + fx);
System.out.println("fxm1 = " + fxm1);
}
}
Latest posts by Wayan (see all)
- How do I install Calibri font in Ubuntu? - January 24, 2021
- How do I create a generic class in Java? - January 1, 2021
- How do I convert java.util.TimeZone to java.time.ZoneId? - April 25, 2020
thank you so much. really helped