klyn.math.Math.log
method
public static log(value as Double) as Double:
Description
Returns the natural logarithm of a value.
import klyn.math

print(Math.log(Math.E))
Throws
  • ValueError if `value` is not strictly positive. ```klyn import klyn.math print(Math.log(Math.E)) ```