Python acos
Python acos(x)
method return the arccosine value of x[-1,1], in radians.
>>> import math >>> math.acos(0.5)
1.0471975511965979
>>> math.acos(-1)
3.141592653589793
>>> math.acos(0)
1.5707963267948966
|
|||||||||||||||||||||||||||||||
|
Python acos(x)
method return the arccosine value of x[-1,1], in radians.
>>> import math >>> math.acos(0.5)
1.0471975511965979
>>> math.acos(-1)
3.141592653589793
>>> math.acos(0)
1.5707963267948966
|
|||||||||||||||||||||||||||||||
|