series_floor()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
計算數值數列輸入的專案型 floor 函式。
語法
series_floor(
系列)
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
系列 | dynamic |
✔️ | 套用 floor 函式的數值數位。 |
傳回
計算樓層函式的動態數位。 任何非數值元素都會產生 null
專案值。
範例
print s = dynamic([-1.5,1,2.5])
| extend s_floor = series_floor(s)
輸出
s | s_floor |
---|---|
[-1.5,1,2.5] | [-2.0,1.0,2.0] |