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 cosine function of the numeric series input.
series_cos(
series)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
series | dynamic |
✔️ | An array of numeric values over which the cosine function is applied. |
Dynamic array of calculated cosine function values. Any non-numeric element yields a null
element value.
print arr = dynamic([-1,0,1])
| extend arr_cos = series_cos(arr)
Output
arr | arr_cos |
---|---|
[-6.5,0,8.2] | [0.54030230586813976,1.0,0.54030230586813976] |