atanh function

double atanh(
  1. double x
)

Implementation

double atanh(double x) => 0.5 * math.log((1 + x) / (1 - x));