Core Function Log10
From Sputnik Wiki
Log10( <expression> )
Contents |
Description
Returns the common (base-10) logarithm of a specified number
Parameters
expression
Any valid numeric expression.
Return Value
Returns the common (base-10) logarithm of a specified number.
Remarks
None.
Example
$Param = 1000.0; $Result = Log10($Param); MsgBox("Log10($Param) = $Result."); // Output: Log10(1000) = 3.