cosh function

double cosh(
  1. double x
)

Implementation

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