klyn.math.Math.atanh
method
public static atanh(value as Double) as Double:
Description
Returns the inverse hyperbolic tangent of a value.
import klyn.math

print(Math.atanh(0.0))
Throws
  • ValueError if `value <= -1` or `value >= 1`. ```klyn import klyn.math print(Math.atanh(0.0)) ```