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 sine of the numeric series input.
Syntax
series_sin(
series)
Learn more about syntax conventions.
Parameters
Name | Type | Required | Description |
---|---|---|---|
series | dynamic |
✔️ | An array of numeric values over which the sine function is applied. |
Returns
A dynamic array of calculated sine function values. Any non-numeric element yields a null
element value.
Example
print arr = dynamic([-1, 0, 1])
| extend arr_sin = series_sin(arr)
Output
arr | arr_sin |
---|---|
[-6.5,0,8.2] | [-0.8414709848078965,0.0,0.8414709848078965] |