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
广告