sinh function

double sinh(
  1. double angle
)

Hyperbolic Sine.

Implementation

double sinh(double angle) {
  return (stdmath.exp(angle) - stdmath.exp(-angle)) / 2;
}