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