acoth function

double acoth(
  1. double value
)

Hyperbolic Area Cotangent.

Implementation

double acoth(double value) {
  return 0.5 * stdmath.log((value + 1) / (value - 1));
}