你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
series_ceiling()
Applies to: ✅ Microsoft Fabric ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Calculates the element-wise ceiling function of the numeric series input.
Syntax
series_ceiling(
series)
Learn more about syntax conventions.
Parameters
Name | Type | Required | Description |
---|---|---|---|
series | dynamic |
✔️ | An array of numeric values over which the ceiling function is applied. |
Returns
Dynamic array of the calculated ceiling function. Any non-numeric element yields a null
element value.
Example
print s = dynamic([-1.5,1,2.5])
| extend s_ceiling = series_ceiling(s)
Output
s | s_ceiling |
---|---|
[-1.5,1,2.5] | [-1.0,1.0,3.0] |