blob: 6d26c695dd3b7e9826655f4d2c64c5d6f8dd46db [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001/* @(#)s_tanh.c 5.1 93/09/24 */
2/*
3 * ====================================================
4 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5 *
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
9 * is preserved.
10 * ====================================================
11 */
12
Elliott Hughesa0ee0782013-01-30 19:06:37 -080013#include <sys/cdefs.h>
14__FBSDID("$FreeBSD$");
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080015
16/* Tanh(x)
17 * Return the Hyperbolic Tangent of x
18 *
19 * Method :
20 * x -x
21 * e - e
22 * 0. tanh(x) is defined to be -----------
23 * x -x
24 * e + e
25 * 1. reduce x to non-negative by tanh(-x) = -tanh(x).
Elliott Hughesa0ee0782013-01-30 19:06:37 -080026 * 2. 0 <= x < 2**-28 : tanh(x) := x with inexact if x != 0
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080027 * -t
Elliott Hughesa0ee0782013-01-30 19:06:37 -080028 * 2**-28 <= x < 1 : tanh(x) := -----; t = expm1(-2x)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080029 * t + 2
30 * 2
Elliott Hughesa0ee0782013-01-30 19:06:37 -080031 * 1 <= x < 22 : tanh(x) := 1 - -----; t = expm1(2x)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080032 * t + 2
Elliott Hughesa0ee0782013-01-30 19:06:37 -080033 * 22 <= x <= INF : tanh(x) := 1.
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080034 *
35 * Special cases:
36 * tanh(NaN) is NaN;
37 * only tanh(0)=0 is exact for finite argument.
38 */
39
Elliott Hughes460ad742014-09-12 14:00:02 -070040#include <float.h>
41
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080042#include "math.h"
43#include "math_private.h"
44
Elliott Hughes460ad742014-09-12 14:00:02 -070045static const volatile double tiny = 1.0e-300;
46static const double one = 1.0, two = 2.0, huge = 1.0e300;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080047
48double
49tanh(double x)
50{
51 double t,z;
52 int32_t jx,ix;
53
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080054 GET_HIGH_WORD(jx,x);
55 ix = jx&0x7fffffff;
56
57 /* x is INF or NaN */
58 if(ix>=0x7ff00000) {
59 if (jx>=0) return one/x+one; /* tanh(+-inf)=+-1 */
60 else return one/x-one; /* tanh(NaN) = NaN */
61 }
62
63 /* |x| < 22 */
64 if (ix < 0x40360000) { /* |x|<22 */
Elliott Hughesa0ee0782013-01-30 19:06:37 -080065 if (ix<0x3e300000) { /* |x|<2**-28 */
66 if(huge+x>one) return x; /* tanh(tiny) = tiny with inexact */
67 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080068 if (ix>=0x3ff00000) { /* |x|>=1 */
69 t = expm1(two*fabs(x));
70 z = one - two/(t+two);
71 } else {
72 t = expm1(-two*fabs(x));
73 z= -t/(t+two);
74 }
Elliott Hughesa0ee0782013-01-30 19:06:37 -080075 /* |x| >= 22, return +-1 */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080076 } else {
Elliott Hughesa0ee0782013-01-30 19:06:37 -080077 z = one - tiny; /* raise inexact flag */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080078 }
79 return (jx>=0)? z: -z;
80}
Elliott Hughes460ad742014-09-12 14:00:02 -070081
82#if (LDBL_MANT_DIG == 53)
83__weak_reference(tanh, tanhl);
84#endif