log()

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


Bash
log(number) #Output: Number


Examples

Parser expression

Description

Bash
log(10)

This example returns:

2.302585092994046

 

Bash
log(1)

This example returns:

0.0

Bash
log(2.71828)

This example returns:

0.999999327347282

 

Additional information

Parameters used in this function

Parameter

Input (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