The acosh(), asinh() and atanh() functions return the inverse hyperbolic cosine, sine, and tangent of their argument, respectively.
The acosh() function returns NaN and sets errno to EDOM when its argument is less than 1.0.
The atanh() function returns NaN and sets errno to EDOM when its argument has absolute value greater than 1.0.
The atanh() function returns +-Inf and sets errno to ERANGE when its argument is +-1.0.
If x is NaN, the asinh(), acosh() and atanh() functions return NaN.
For exceptional cases, matherr(3M) tabulates the values to be returned as dictated
by Standards other than XPG4.
|