Calculate the hyperbolic arcsine of each element in an array.
> arcsinh([0, 1, -1])[0, 0.881373587019543, -0.881373587019543] Copy
> arcsinh([0, 1, -1])[0, 0.881373587019543, -0.881373587019543]
The array of numbers.
An array with the hyperbolic arcsine of each input element.
Calculate the hyperbolic arcsine of each element in an array.
Example