log10()

Synopsis

Returns the base 10 logarithm of a number greater than 0.

Syntax

log10 ( n As Number ) As Number
Name Argument Type Description
n Number Any number greater than 0.

Example 1

Intent >log10(1.0) 
--> 0.0 

Example 2

Intent >log10(10) 
--> 1.0