Skip to content

math.exp

指定された数のe乗を返す

lua
math.exp (x)

説明

ネイピア数 ex 乗を計算して返します。

サンプルコード

lua
local x = 1
print(math.exp(x))  -- e^1 = 2.718281828459

この例では、eの1乗を計算しています。

互換性

  • Lua 5.1

関連項目