The math.asinh()
function returns the inverse hyperbolic sine of a given number.
math.asinh(x)
copy
Where x
is a numeric value.
Note that the math.asinh()
function returns the result in radians. If you need the result in degrees, you can convert it using the math.degrees()
function.