series_acos()
Applies to: ✅ Microsoft Fabric ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Calculates the element-wise arccosine function of the numeric series input.
Syntax
series_acos(
series)
Learn more about syntax conventions.
Parameters
Name | Type | Required | Description |
---|---|---|---|
series | dynamic |
✔️ | An array of numeric values over which the arccosine function is applied. |
Returns
Dynamic array of calculated arccosine function values. Any non-numeric element yields a null
element value.
Example
print arr = dynamic([-1,0,1])
| extend arr_acos = series_acos(arr)
Output
arr | arr_acos |
---|---|
[-6.5,0,8.2] | [3.1415926535897931,1.5707963267948966,0.0] |