Appearance
常用対数を返す
math.log10 (x)
x の常用対数(底 10 の対数)を返します。
x
local x = 100 print(math.log10(x)) -- 2
この例では、100の底10の対数を計算しています。
100
math.log