java.lang.Math.log1p() 用于返回参数和 1 的自然对数。
用法
public static double log1p(double x)
参数
x= a double value
返回
It returns the value ln(x + 1), the natural log of x + 1
- 如果参数为正值,则此方法将返回给定值的自然对数。
- 如果参数为 NaN 或小于 -1,则此方法将返回 NaN。
- 如果参数为 -1,则此方法将返回 Negative Infinity。
- 如果参数是 Positive Infinity,则此方法将返回 Positive Infinity。
- 如果参数是正零或负零,此方法将返回与参数相同符号的零。
例子1
public class Log1pExample1
{
public static void main(String[] args)
{
double x = 26;
// Input positive value, Output natural logarithm of x
System.out.println(Math.log1p(x));
}
}
输出:
3.295836866004329
例子2
public class Log1pExample2
{
public static void main(String[] args)
{
double x = -1.65;
// Input less than -1, Output NaN
System.out.println(Math.log1p(x));
}
}
输出:
NaN
例子3
public class Log1pExample3
{
public static void main(String[] args)
{
double x = -1;
// Input -1, Output -Infinity
System.out.println(Math.log1p(x));
}
}
输出:
-Infinity
示例 4
public class Log1pExample4
{
public static void main(String[] args)
{
double x = 1.0/0;
// Input positive infinity, Output positive infinity
System.out.println(Math.log1p(x));
}
}
输出:
Infinity
例 5
public class Log1pExample5
{
public static void main(String[] args)
{
double x = -0.0;
// Input negative zero, Output negative zero
System.out.println(Math.log1p(x));
}
}
输出:
-0.0
相关用法
- Java Math.log10()用法及代码示例
- Java Math.log()用法及代码示例
- Java Math.multiplyExact()用法及代码示例
- Java Math.rint()用法及代码示例
- Java Math.nextUp()用法及代码示例
- Java Math.tan()用法及代码示例
- Java Math.asin()用法及代码示例
- Java Math.atan()用法及代码示例
- Java Math.nextAfter()用法及代码示例
- Java Math.exp()用法及代码示例
- Java Math.tanh()用法及代码示例
- Java Math.toDegrees()用法及代码示例
- Java Math.getExponent()用法及代码示例
- Java Math.toIntExact()用法及代码示例
- Java Math.IEEEremainder()用法及代码示例
- Java Math.sqrt()用法及代码示例
- Java Math.incrementExact()用法及代码示例
- Java Math.min()用法及代码示例
- Java Math.signum()用法及代码示例
- Java Math.copySign()用法及代码示例
注:本文由纯净天空筛选整理自 Java Math.log1p() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。