csch function

double csch(
  1. double angle
)

Hyperbolic Cosecant.

Implementation

double csch(double angle) {
  return 1 / sinh(angle);
}