This function returns the natural logarithm (based on exponential 'e') of the given number.

Syntax
log(number) #Output: Number
Examples
Parser expressionDescription
log(10)

This example returns:

2.302585092994046


log(1)

This example returns:

0.0

log(2.71828)

This example returns:

0.999999327347282


Additional information

Parameters used in this function

ParameterInput (data type)Description
number

NUMBER

Any given positive number or numeric field code..
Output

This function returns a NUMBER

Check out log10() to get the base 10 logarithm of the given number. 


Use cases and examples