共用方式為


series_ceiling()

適用於:✅Microsoft網狀架構Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel

計算數值數列輸入的專案型上限函式。

語法

series_ceiling(系列)

深入瞭解 語法慣例

參數

姓名 類型​​ 必要 描述
系列 dynamic ✔️ 套用 ceiling 函式的數值數位。

傳回

計算上限函式的動態數位。 任何非數值元素都會產生 null 專案值。

範例

print s = dynamic([-1.5,1,2.5])
| extend s_ceiling = series_ceiling(s)

輸出

s s_ceiling
[-1.5,1,2.5] [-1.0,1.0,3.0]