Log10

log10

Returns the base-10 logarithm of the input.

Spec

log10(arg0)

Parameters

arg0 - A numeric value.

Return Value

The base-10 logarithm of arg0 as a double.

Example

datatable(val:double)[1.0, 1000.0]
| extend result = log10(val)
valresult
1.00.0
1000.03.0