LOG10 |
Top Previous Next |
Syntax DOUBLE = LOG10(num as DOUBLE) Description Calculate the base 10 logarithm of a number if successful Parameters num - Value whose logarithm is to be found Return value The logarithm of a number unless the number is less than or equal to zero. If the input is less than zero then the result is indefinite. If the input is equal to zero then the result is infinite and cannot be represented. Remarks See also LOG Example usage PRINT LOG10(9000.0) |