描述
這個java.lang.StrictMath.log1p() 方法返回參數和 1 之和的自然對數。對於小值 x,結果log1p(x)更接近真實的結果ln(1 + x)比浮點計算log(1.0+x).它包括一些情況 -
- 如果參數為 NaN 或小於 -1,則結果為 NaN。
- 如果參數為正無窮大,則結果為正無窮大。
- 如果參數為負一,則結果為負無窮大。
- 如果自變量為零,則結果為零,其符號與自變量相同。
聲明
以下是聲明java.lang.StrictMath.log1p()方法
public static double log1p(double x)
參數
x- 這是值。
返回值
此方法返回值 ln(x + 1),即 x + 1 的自然對數。
異常
NA
示例
下麵的例子展示了 java.lang.StrictMath.log1p() 方法的用法。
package com.tutorialspoint;
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
相關用法
- Java Java.lang.StrictMath.log10()用法及代碼示例
- Java Java.lang.StrictMath.log()用法及代碼示例
- Java Java.lang.StrictMath.tanh()用法及代碼示例
- Java Java.lang.StrictMath.toDegrees()用法及代碼示例
- Java Java.lang.StrictMath.tan()用法及代碼示例
- Java Java.lang.StrictMath.abs()用法及代碼示例
- Java Java.lang.StrictMath.copySign()用法及代碼示例
- Java Java.lang.StrictMath.signum()用法及代碼示例
- Java Java.lang.StrictMath.sinh()用法及代碼示例
- Java Java.lang.StrictMath.cbrt()用法及代碼示例
- Java Java.lang.StrictMath.toRadians()用法及代碼示例
- Java Java.lang.StrictMath.scalb()用法及代碼示例
- Java Java.lang.StrictMath.atan2()用法及代碼示例
- Java Java.lang.StrictMath.random()用法及代碼示例
- Java Java.lang.StrictMath.max()用法及代碼示例
- Java Java.lang.StrictMath.expm1()用法及代碼示例
- Java Java.lang.StrictMath.round()用法及代碼示例
- Java Java.lang.StrictMath.nextAfter()用法及代碼示例
- Java Java.lang.StrictMath.sin()用法及代碼示例
- Java Java.lang.StrictMath.atan()用法及代碼示例
注:本文由純淨天空篩選整理自 Java.lang.StrictMath.log1p() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。