acsch function

double acsch(
  1. double value
)

Hyperbolic Area Cosecant.

Implementation

double acsch(double value) {
  return asinh(1 / value);
}