LOG10

f = LOG10 (x)

Returns the base-10 logarithm of x.

Example:

a = 10^2
print a       ' Output: 100

b = log10(a)
print b       ' Output: 2
Code samples using LOG10