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.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 get number of each day for a certain month in Java? - September 8, 2024
- How do I get operating system process information using ProcessHandle? - July 22, 2024
- How do I sum a BigDecimal property of a list of objects using Java Stream API? - July 22, 2024
thank you so much. really helped