Calculate the arccosine of each element in an array.
> arccos([1, 0, -1])[0, Math.PI / 2, Math.PI] Copy
> arccos([1, 0, -1])[0, Math.PI / 2, Math.PI]
The array of numbers in the range [-1, 1].
An array with the arccosine of each input element.
Calculate the arccosine of each element in an array.
Example