Appearance
べき乗を計算する(^演算子と同じ)
^
math.pow (x, y)
x の y 乗を計算して返します。この計算は x ^ y と同等です。
x
y
x ^ y
local x, y = 2, 3 print(math.pow(x, y)) -- 8
この例では、2の3乗を計算しています。
2
3
math.exp