atanh function

double atanh(
  1. double value
)

Hyperbolic Area Tangent.

Implementation

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