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
Calculates the element-wise natural logarithm function (base-e) of the numeric series input.
series_log(
series)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
series | dynamic |
✔️ | An array of numeric values on which the natural logarithm function is applied. |
Dynamic array of the calculated natural logarithm function. Any non-numeric element yields a null
element value.
print s = dynamic([1,2,3])
| extend s_log = series_log(s)
Output
s | s_log |
---|---|
[1,2,3] | [0.0,0.69314718055994529,1.0986122886681098] |