Log10

Calculates the base-10 logarithm.

Syntax:

Log10(x)

Parameters:

(f) x  floating point number.

Returns:

(f)  the logarithm of the argument .

 

The Log10 function calculates the base-10 logarithm of the argument. If the argument is negative or zero, an error will occur.

 

Example:


a = Log10(123.45)
Message("Base-10 log of 123.45 is", a)
See Also:

Loge, Exp, Operators **