java.lang.Math.log1p(double x) 返回自變數的總和及1。注意的自然對數,對於小的值x, log1p(x)的結果更接近ln(1+x)的真實結果比數的浮點計算log(1.0+ X)。特殊情況:
如果引數為NaN或小於-1,那麼結果為NaN。
如果引數為正無窮大,那麼結果為正無窮大。
如果引數為負數,那麼結果為負無窮大。
如果引數是零,那麼結果是相同的符號引數為零。
以下是java.lang.Math.log1p()方法的宣告
public static double log1p(double x)
x -- 一個double值
此方法返回值 ln(x + 1)的自然對數 x + 1
NA
下面的例子顯示lang.Math.log1p()方法的使用。
package com.yiibai; import java.lang.*; public class MathDemo { public static void main(String[] args) { // get two double numbers double x = 60984.1; double y = 1000; // call log1p and print the result System.out.println("Math.log1p(" + x + ")=" + Math.log1p(x)); // call log1p and print the result System.out.println("Math.log1p(" + y + ")=" + Math.log1p(y)); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Math.log1p(60984.1)=11.018384851023473 Math.log1p(1000)=6.90875477931522