Java StrictMath log1p()方法
java.lang.StrictMath.log1p() 方法返回参数与1之和的自然对数。对于小值x,log1p(x)的结果更接近ln的真实结果ln(1 + x)的比数浮点值计算log(1.0+x)。它包括一些情况:
- 如果参数为NaN或小于-1,那么结果为NaN。
- 如果参数为正无穷大,那么结果为正无穷大。
- 如果参数为负数,那么结果为负无穷大。
- 如果参数是零,那么结果是相同的符号参数为零。
1 语法
public static double log1p(double x)
2 参数
x :这是一个值
3 返回值
此方法返回ln(x + 1)值, x + 1的自然数。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java StrictMath log1p()方法
*/
import java.lang.*;
public class StrictMathDemo {
public static void main(String[] args) {
double d1 = 90 , d2 = 0.0 , d3 = (1.0/0.0);
// returns the natural logarithm of the sum of the argument and 1
double log1pValue = StrictMath.log1p(d1);
System.out.println("Logarithm value of double (d1 + 1) with base 10 :
" + log1pValue);
log1pValue = StrictMath.log1p(d2);
System.out.println("Logarithm value of double (d2 + 1) with base 10 :
" + log1pValue);
log1pValue = StrictMath.log1p(d3);
System.out.println("Logarithm value of double (d3 + 1) with base 10 :
" + log1pValue);
}
}
输出结果为:
Logarithm value of double (d1+1) with base 10 : 4.51085950651685
Logarithm value of double (d2+1) with base 10 : 0.0
Logarithm value of double (d3+1) with base 10 : Infinity
热门文章
优秀文章