你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

series_product()

适用于:✅Azure 数据资源管理器Azure Monitor✅ Sentinel

计算序列元素的乘积。

语法

series_product( 系列)

详细了解语法约定

参数

名称 类型 必选 DESCRIPTION
series dynamic ✔️ 数值数组。

退货

返回具有数组元素乘积的双精度类型值。

示例:

print arr=dynamic([1,2,3,4]) 
| extend series_product=series_product(arr)

输出

S1 系列 series_product
[1,2,3,4] 24