Return a Single specifying the base 10 logarithm of a number.
Syntax: x = Log10(number)
The required number argument is a Single or valid numeric expression .
Requires:
Include <libs\fp32ext.bas>
Example:
Dim x As Single x=100.0 x=Log10(x) ' x is 2.0
Also See: Exp10