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

print(Math.acosh(1.0))
Throws
  • ValueError if `value < 1`. ```klyn import klyn.math print(Math.acosh(1.0)) ```