NumPy arccos()
The NumPy arccos() function is the trigonometric inverse cosine function so that, if y = cos(x), then x = arccos(y). If you apply it to a NumPy array, it performs the function element-wise. Arguments Type Description x array_like x-coordinate on the unit circle. For real arguments, the domain is [-1, 1]. out ndarray, None, or … Read more