sinh function

double sinh(
  1. double x
)

Implementation

double sinh(double x) {
  return (math.exp(x) - math.exp(-x)) / 2.0;
}