1 /* Return arc hyperbolic tangent for a complex float type.
2 Copyright (C) 1997-2017 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
22 #include <math_private.h>
26 M_DECL_FUNC (__catanh
) (CFLOAT x
)
29 int rcls
= fpclassify (__real__ x
);
30 int icls
= fpclassify (__imag__ x
);
32 if (__glibc_unlikely (rcls
<= FP_INFINITE
|| icls
<= FP_INFINITE
))
34 if (icls
== FP_INFINITE
)
36 __real__ res
= M_COPYSIGN (0, __real__ x
);
37 __imag__ res
= M_COPYSIGN (M_MLIT (M_PI_2
), __imag__ x
);
39 else if (rcls
== FP_INFINITE
|| rcls
== FP_ZERO
)
41 __real__ res
= M_COPYSIGN (0, __real__ x
);
43 __imag__ res
= M_COPYSIGN (M_MLIT (M_PI_2
), __imag__ x
);
53 else if (__glibc_unlikely (rcls
== FP_ZERO
&& icls
== FP_ZERO
))
59 if (M_FABS (__real__ x
) >= 16 / M_EPSILON
60 || M_FABS (__imag__ x
) >= 16 / M_EPSILON
)
62 __imag__ res
= M_COPYSIGN (M_MLIT (M_PI_2
), __imag__ x
);
63 if (M_FABS (__imag__ x
) <= 1)
64 __real__ res
= 1 / __real__ x
;
65 else if (M_FABS (__real__ x
) <= 1)
66 __real__ res
= __real__ x
/ __imag__ x
/ __imag__ x
;
69 FLOAT h
= M_HYPOT (__real__ x
/ 2, __imag__ x
/ 2);
70 __real__ res
= __real__ x
/ h
/ h
/ 4;
75 if (M_FABS (__real__ x
) == 1
76 && M_FABS (__imag__ x
) < M_EPSILON
* M_EPSILON
)
77 __real__ res
= (M_COPYSIGN (M_LIT (0.5), __real__ x
)
78 * ((FLOAT
) M_MLIT (M_LN2
)
79 - M_LOG (M_FABS (__imag__ x
))));
83 if (M_FABS (__imag__ x
) >= M_EPSILON
* M_EPSILON
)
84 i2
= __imag__ x
* __imag__ x
;
86 FLOAT num
= 1 + __real__ x
;
89 FLOAT den
= 1 - __real__ x
;
94 __real__ res
= M_LIT (0.25) * M_LOG (f
);
98 __real__ res
= M_LIT (0.25) * M_LOG1P (num
/ den
);
102 FLOAT absx
, absy
, den
;
104 absx
= M_FABS (__real__ x
);
105 absy
= M_FABS (__imag__ x
);
113 if (absy
< M_EPSILON
/ 2)
115 den
= (1 - absx
) * (1 + absx
);
120 den
= (1 - absx
) * (1 + absx
) - absy
* absy
;
121 else if (absx
>= M_LIT (0.75) || absy
>= M_LIT (0.5))
122 den
= -M_SUF (__x2y2m1
) (absx
, absy
);
124 den
= (1 - absx
) * (1 + absx
) - absy
* absy
;
126 __imag__ res
= M_LIT (0.5) * M_ATAN2 (2 * __imag__ x
, den
);
129 math_check_force_underflow_complex (res
);
135 declare_mgen_alias (__catanh
, catanh
)
137 #if M_LIBM_NEED_COMPAT (catanh)
138 declare_mgen_libm_compat (__catanh
, catanh
)