當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Math.log1p()用法及代碼示例


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.log1p() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。