calc.log
Calculate the logarithm of a number.
If the base is not specified, the logarithm is calculated in base 10.
Example
#calc.log(100)

ParametersParameters are the inputs to a function. They are specified in parentheses after the function name.
Parameters are the inputs to a function. They are specified in parentheses after the function name.
value
The number whose logarithm to calculate. Must be strictly positive.
base
The base of the logarithm. May not be zero.
Default: 10.0