![]() |
VOOZH | about |
The java.lang.Math.log1p() is one of the Java Math Library method which is used to return the natural logarithm of the sum of the arguments and 1.For the small values, the result of log1p(a) is much closer to the true result of ln(1 + a) than the floating-point evaluation of log(1.0 + a).There are various cases :
Syntax :
public static double log1p(double a)
Parameter :
a : User input
Return :
This method returns the value ln(x + 1), the natural log of x + 1.
Example :To show working of java.lang.Math.log1p() method.
3.196630215920881 NaN Infinity -Infinity 0.0