klyn.math.Math.log
method
public static log<INT_TYPE extends AbstractInt>(value as INT_TYPE) as Double:
Description

Returns the natural logarithm of a value.

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