Function sinh

Calculate the hyperbolic sine of each element in an array.

> sinh([0, 1, -1])
[0, 1.1752011936438014, -1.1752011936438014]
  • Parameters

    • array: number[]

      The array of numbers.

    Returns number[]

    An array with the hyperbolic sine of each input element.