series_asin()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
計算數值數列輸入的專案式反正弦函數。
語法
series_asin(
系列)
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
系列 | dynamic |
✔️ | 套用反正弦函數的數值數組。 |
傳回
計算的反正弦函數值的動態數位。 任何非數值元素都會產生 null
專案值。
範例
下列範例會建立具有 值 [-1,0,1]
的動態陣列 arr
。 然後,它會使用數據行arr_asin
擴充結果,其中包含套用至arr
數位的series_asin()
函式結果。
print arr = dynamic([-1,0,1])
| extend arr_asin = series_asin(arr)
輸出
arr | arr_asin |
---|---|
[-1,0,1] | ["-1.5707963267948966",0,"1.5707963267948966"] |