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