log10()

This function returns the base 10 logarithm of the given number.



Bash
 log10(number) #Output: Number


Examples

Parser expression

Description

Bash
log10(10)

This example returns:

1.0

Bash
log10(1)

This example returns:

0.0

Bash
log10(1000)

This example returns:

3.0

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


📚 Use cases and examples