当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.lang.StrictMath.log1p()用法及代码示例



描述

这个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.lang.StrictMath.log1p() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。