numpy.arccos()
numpy.arccos
-
numpy.arccos(x[, out]) =
-
Trigonometric inverse cosine, element-wise.
The inverse of
cos
so that, ify = cos(x)
, thenx = arccos(y)
.Parameters: x : array_like
x
-coordinate on the unit circle. For real arguments, the domain is [-1, 1].out : ndarray, optional
Array of the same shape as
a
, to store results in. Seedoc.ufuncs
(Section “Output arguments”) for more details.<