Skip to content

math.tan

タンジェントを返す

lua
math.tan (x)

説明

x のタンジェント(正接)をラジアン単位で返します。

サンプルコード

lua
local x = math.pi / 4
print(math.tan(x))  -- 1

この例では、π/4ラジアンの正接を計算しています。

互換性

  • Lua 5.1

関連項目