series_sin()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
計算數值數列輸入的專案正弦值。
語法
series_sin(
系列)
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
系列 | dynamic |
✔️ | 套用正弦函數的數值數組。 |
傳回
計算正弦函數值的動態數位。 任何非數值元素都會產生 null
專案值。
範例
print arr = dynamic([-1, 0, 1])
| extend arr_sin = series_sin(arr)
輸出
arr | arr_sin |
---|---|
[-6.5,0,8.2] | [-0.8414709848078965,0.0,0.8414709848078965] |