Java 中的對數函式


Java 中的對數函式是 java.lang.Math 的一部分。這些函式包括 log、log10、log1p。我們來看看每個對數函式的示例 -

static double log(double a)

java.lang.Math.log(double a) 返回 double 值的自然對數(以 e 為底)。我們來看一個示例 -

示例

import java.io.*;
public class Main {
   public static void main(String args[]) {
      // get two double numbers
      double x = 60984.1;
      double y = -497.99;
      // get the natural logarithm for x
      System.out.println("Math.log(" + x + ")=" + Math.log(x));
      // get the natural logarithm for y
      System.out.println("Math.log(" + y + ")=" + Math.log(y));
   }
}

輸出

Math.log(60984.1)=11.018368453441132
Math.log(-497.99)=NaN

static double log10(double a)

java.lang.Math.log10(double a) 返回 double 值的以 10 為底的對數。我們現在來看一個示例 -

示例

import java.io.*;
public class Main {
   public static void main(String args[]) {
      // get two double numbers
      double x = 60984.1;
      double y = 1000;
      // get the base 10 logarithm for x
      System.out.println("Math.log10(" + x + ")=" + Math.log10(x));
      // get the base 10 logarithm for y
      System.out.println("Math.log10(" + y + ")=" + Math.log10(y));
   }
}

輸出

Math.log10(60984.1)=4.78521661890635
Math.log10(1000.0)=3.0

static double log1p(double x)

java.lang.Math.log1p(double x) 返回引數和 1 的和的自然對數。

示例

import java.io.*;
public class Main {
   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.0)=6.90875477931522

更新於: 2019 年 9 月 23 日

293 次瀏覽

開啟您的 職業生涯

完成課程以獲得認證

開始
廣告
© . All rights reserved.