Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to: ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
log10()
returns the common (base-10) logarithm of the input.
log10(
number)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
number | real |
✔️ | The number for which to calculate the base-10 logarithm. |
- The common logarithm is the base-10 logarithm: the inverse of the exponential function (exp) with base 10.
null
if the argument is negative or null or can't be converted to areal
value.
print result=log10(5)
Output
result |
---|
0.69897000433601886 |