Python asin function
Python asin(x)
function returns the Arcsine value of x.
The principle values for x is [-1,1].
>>> import math >>> math.asin(0.5)
0.5235987755982989
>>> math.asin(1)
1.5707963267948966
>>> math.asin(0)
0.0
|
|||||||||||||||||||||||||||||||
|
Python asin(x)
function returns the Arcsine value of x.
The principle values for x is [-1,1].
>>> import math >>> math.asin(0.5)
0.5235987755982989
>>> math.asin(1)
1.5707963267948966
>>> math.asin(0)
0.0
|
|||||||||||||||||||||||||||||||
|