Description
Function that returns the arcsine in radians of the number sent as parameter ().
The arcsine is the inverse function of the sine , summarized in the next definition:
y=sin−1⇔x=sin(x)
For y=sin−1(x):
- Range: −2π⩽y⩽2π or −90∘⩽y⩽90∘
- Domain: −1⩽x⩽1
Sample Source Pattern
Syntax
Arguments
expression
: Numeric float expression, where expression is in[−1,1].
Return Type
Numeric float expression between −2π and 2π. If the numeric expression sent by parameter is not in [−1,1], the database engine throws an error.
Examples
ASIN(0.5) |
------------------+
0.5235987755982989|