sinh function

double sinh(
  1. double x
)

Implementation

double sinh(double x) => (math.exp(x) - math.exp(-x)) / 2;