series_pow()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
計算兩個數值數列輸入的專案乘冪。
語法
series_pow(
series1,
series2)
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
series1, series2 | dynamic |
✔️ | 數值的陣列。 第一個陣列或基底是元素向第二個陣列或power的乘冪引發至動態陣列結果。 |
傳回
兩個輸入之間計算專案乘冪運算的動態陣列。 任何非數值專案或非現有專案,例如,如果陣列的大小不同,會產生 null
元素值。
範例
print x = dynamic([1, 2, 3, 4]), y=dynamic([1, 2, 3, 0.5])
| extend x_pow_y = series_pow(x, y)
輸出
x | y | x_pow_y |
---|---|---|
[1,2,3,4] | [1,2,3,0.5] | [1.0,4.0,27.0,2.0] |