Calculates the base-10 logarithm of a number.
Function
result = log10(input)
Arguments
Argument | Data Type |
input | numeric |
---|---|
result | decimal |
Comments
Base 10 logarithm. Zero and negative inputs evaluate to null.
Examples
result = log10(1000) /* result = 3 */