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