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