Returns the closest double approximation of the natural logarithm of the argument. The returned result is within 1 ulp (unit in the last place) of the real result. Special cases: log(+0.0) = -infinity log(-0.0) = -infinity {@code log((anything < 0) = Na
(double d)
| 421 | * @return the natural logarithm of the argument. |
| 422 | */ |
| 423 | public static native double log(double d); |
| 424 | |
| 425 | /** |
| 426 | * Returns the closest double approximation of the base 10 logarithm of the |