ASIN
説明
xのアークサインを返します。xが-1から1の範囲にない場合はnanを返します。
構文
ASIN(<x>)
パラメータ
| Parameter | デスクリプション |
|---|---|
<x> | asin値を計算する値 |
Return Value
パラメータxのasin値。
Example
select asin(0.5);
+---------------------+
| asin(0.5) |
+---------------------+
| 0.52359877559829893 |
+---------------------+
select asin(2);
+-----------+
| asin(2.0) |
+-----------+
| nan |
+-----------+