math.acos
←
math
型:function
code:Lua
math.acos(x)
table:
型 説明
#1
number
戻り値 number
xの逆正弦を返す 定義域は
$ -1\le x\le 1
, 値域は
$ 0\le y \le \pi
定義域外の値が渡されると
nan
を返す
使用例
code:Lua
print(math.acos(-1))
3.141592535898
$ (≒\pi)
を出力する
関連項目
math.asin
math.atan
math.cos
math.cosh