Ath
This function returns the inverse hyperbolic tangent of a specified number.
ath(number)
RESULT=ath(0.5) : # 0.5493061
This function is only defined in the range ]-1,1[ and it can be calculated by using the following formula:
ath(x)=ln(sqr((1+x)/(1-x)))
The type of result is Double.
Error code | Description |
---|---|
15 | Hyperbolic function error: the value given is not in the range ]-1,1[ |