1 /* @(#)e_atanh.c 5.1 93/09/24 */
3 * ====================================================
4 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6 * Developed at SunPro, a Sun Microsystems, Inc. business.
7 * Permission to use, copy, modify, and distribute this
8 * software is freely granted, provided that this notice
10 * ====================================================
15 * 1.Reduced x to positive by atanh(-x) = -atanh(x)
18 * atanh(x) = --- * log(1 + -------) = 0.5 * log1p(2 * --------)
22 * atanh(x) = 0.5*log1p(2x+2x*x/(1-x))
25 * atanh(x) is NaN if |x| > 1 with signal;
26 * atanh(NaN) is that NaN with no signal;
27 * atanh(+-1) is +-INF with signal.
33 #include <math_private.h>
34 #include <math-underflow.h>
35 #include <libm-alias-finite.h>
37 static const long double one
= 1.0L, huge
= 1e300L
;
39 static const long double zero
= 0.0L;
42 __ieee754_atanhl(long double x
)
49 EXTRACT_WORDS64 (hx
, xhi
);
50 ix
= hx
&0x7fffffffffffffffLL
;
51 if (ix
>= 0x3ff0000000000000LL
) { /* |x|>=1 */
52 if (ix
> 0x3ff0000000000000LL
)
60 if(ix
<0x3c70000000000000LL
&&(huge
+x
)>zero
) /* x<2**-56 */
62 math_check_force_underflow (x
);
66 if(ix
<0x3fe0000000000000LL
) { /* x < 0.5 */
68 t
= 0.5*__log1pl(t
+t
*x
/(one
-x
));
70 t
= 0.5*__log1pl((x
+x
)/(one
-x
));
71 if(hx
>=0) return t
; else return -t
;
73 libm_alias_finite (__ieee754_atanhl
, __atanhl
)