asech function

double asech(
  1. double value
)

Hyperbolic Area Secant.

Implementation

double asech(double value) {
  return acosh(1 / value);
}