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