共用方式為


log10()

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

log10() 會傳回輸入的一般 (base-10) 對數。

語法

log10(number)

深入瞭解 語法慣例

參數

姓名 類型​​ 必要 描述
number real ✔️ 要計算base-10對數的數位。

傳回

  • 常見的對數是base-10對數:與基底10的指數函式(exp) 相反。
  • null 如果自變數為負數或 Null,或無法轉換成 real 值, 則為 。

範例

print result=log10(5)

輸出

result
0.69897000433601886
  • 如需自然 (base-e) 對數,請參閱 log()
  • 如需base-2對數,請參閱 log2()