series_log()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
計算數值數列輸入的專案明智自然對數函數(base-e)。
語法
series_log(
系列)
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
系列 | dynamic |
✔️ | 套用自然對數函式的數值數位。 |
傳回
計算自然對數函式的動態數位。 任何非數值元素都會產生 null
專案值。
範例
print s = dynamic([1,2,3])
| extend s_log = series_log(s)
輸出
s | s_log |
---|---|
[1,2,3] | [0.0,0.69314718055994529,1.0986122886681098] |