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.
In this article
Applies to: ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
The natural logarithm is the base-e logarithm: the inverse of the natural exponential function (exp).
log(
number)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
number | real |
✔️ | The number for which to calculate the logarithm. |
log()
returns the natural logarithm of the input.null
if the argument is negative or null or can't be converted to areal
value.
print result=log(5)
Output
result |
---|
1.6094379124341003 |