Skip to content

math.log10

常用対数を返す

lua
math.log10 (x)

説明

x の常用対数(底 10 の対数)を返します。

サンプルコード

lua
local x = 100
print(math.log10(x))  -- 2

この例では、100の底10の対数を計算しています。

互換性

  • Lua 5.1

関連項目