Function DescriptionWatch movie online The Transporter Refueled (2015)
Function ASIN returns the arc sine of the argument n, which must be in the range of -1 to 1.
The function returns a value in the range of -pi/2 to pi/2 in radians.
Examples
1
2
3
4
5
6
7
8
9
|
SELECT ASIN(0.5)
FROM dual;
Result: 0,523598775598299
SELECT ASIN(0.7)
FROM dual;
Result: 0,775397496610753
|