Beispiel #1
0
 public static double log10(double x) {
   return NativeMath.log(x) * NativeMath.LOG10E;
 }
Beispiel #2
0
 public static double log1p(double x) {
   return x == 0 ? x : NativeMath.log(x + 1);
 }
Beispiel #3
0
 public static double log(double x) {
   return NativeMath.log(x);
 }