series_atan()
Learn how to use the series_atan() function to calculate the element-wise arctangent of the numeric series input.
Calculates the element-wise arctangent function of the numeric series input.
Syntax
series_atan(series)
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| series | dynamic | ✔️ | An array of numeric values over which the arctangent function is applied. |
Returns
Dynamic array of calculated arctangent function values. Any non-numeric element yields a null element value.
Example
print arr = dynamic([-1,0,1])
| extend arr_atan = series_atan(arr)
Output
| arr | arr_atan |
|---|---|
| [-6.5,0,8.2] | [-0.78539816339744828,0.0,0.78539816339744828] |
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.