Log10

Returns the base 10 logarithm of a value.

Synopsis

result = Log10(value)

Args

value is a positive, real number.

Returns

The base 10 logarithm.

Notes

You can calculate the logarithm for some other base by dividing by 10 and multiplying by the desired base. For example, to calculate the base 2 logarithm of value:
SAY .2 * Log10(value)