Appearance
指定された数のe乗を返す
math.exp (x)
ネイピア数 e の x 乗を計算して返します。
e
x
local x = 1 print(math.exp(x)) -- e^1 = 2.718281828459
この例では、eの1乗を計算しています。
math.log
math.pow