ASIN
Descriptionβ
Returns the arc sine of x
, or nan
if x
is not in the range -1
to 1
.
Syntaxβ
ASIN(<x>)
Parametersβ
Parameter | Description |
---|---|
<x> | The value for which the asin value is to be calculated |
Return Valueβ
The asin value of parameter x
.
Exampleβ
select asin(0.5);
+---------------------+
| asin(0.5) |
+---------------------+
| 0.52359877559829893 |
+---------------------+
select asin(2);
+-----------+
| asin(2.0) |
+-----------+
| nan |
+-----------+