]>
sourceware.org Git - glibc.git/blob - sysdeps/ieee754/dbl-64/s_tanh.c
673a97102de292fdfa657b0c9cb77d31655f337c
1 /* @(#)s_tanh.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 * ====================================================
13 #if defined(LIBM_SCCS) && !defined(lint)
14 static char rcsid
[] = "$NetBSD: s_tanh.c,v 1.7 1995/05/10 20:48:22 jtc Exp $";
18 * Return the Hyperbolic Tangent of x
23 * 0. tanh(x) is defined to be -----------
26 * 1. reduce x to non-negative by tanh(-x) = -tanh(x).
27 * 2. 0 <= x <= 2**-55 : tanh(x) := x*(one+x)
29 * 2**-55 < x <= 1 : tanh(x) := -----; t = expm1(-2x)
32 * 1 <= x <= 22.0 : tanh(x) := 1- ----- ; t=expm1(2x)
34 * 22.0 < x <= INF : tanh(x) := 1.
38 * only tanh(0)=0 is exact for finite argument.
43 #include <math_private.h>
44 #include <math-underflow.h>
45 #include <libm-alias-double.h>
47 static const double one
= 1.0, two
= 2.0, tiny
= 1.0e-300;
55 /* High word of |x|. */
56 EXTRACT_WORDS (jx
, lx
, x
);
63 return one
/ x
+ one
; /* tanh(+-inf)=+-1 */
65 return one
/ x
- one
; /* tanh(NaN) = NaN */
69 if (ix
< 0x40360000) /* |x|<22 */
72 return x
; /* x == +-0 */
73 if (ix
< 0x3c800000) /* |x|<2**-55 */
75 math_check_force_underflow (x
);
76 return x
* (one
+ x
); /* tanh(small) = small */
78 if (ix
>= 0x3ff00000) /* |x|>=1 */
80 t
= __expm1 (two
* fabs (x
));
81 z
= one
- two
/ (t
+ two
);
85 t
= __expm1 (-two
* fabs (x
));
88 /* |x| > 22, return +-1 */
92 z
= one
- tiny
; /* raised inexact flag */
94 return (jx
>= 0) ? z
: -z
;
96 libm_alias_double (__tanh
, tanh
)
This page took 0.050396 seconds and 6 git commands to generate.