Imported Upstream version 2.9.0
[debian/cc1111] / device / lib / tanhf.c
1 /*  tanhf.c: Computes tanh(x) where x is a 32-bit float as outlined in [1].
2
3     Copyright (C) 2001, 2002  Jesus Calvino-Fraga, jesusc@ieee.org 
4
5     This library is free software; you can redistribute it and/or
6     modify it under the terms of the GNU Lesser General Public
7     License as published by the Free Software Foundation; either
8     version 2.1 of the License, or (at your option) any later version.
9
10     This library is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13     Lesser General Public License for more details.
14
15     You should have received a copy of the GNU Lesser General Public
16     License along with this library; if not, write to the Free Software
17     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA */
18
19 /* [1] William James Cody and W.  M.  Waite.  _Software manual for the
20    elementary functions_, Englewood Cliffs, N.J.:Prentice-Hall, 1980. */
21
22 /* Version 1.0 - Initial release */
23
24 #include <math.h>
25 #include <errno.h>
26
27 #define P0 -0.8237728127E+0
28 #define P1 -0.3831010665E-2
29 #define Q0  0.2471319654E+1
30 #define Q1  0.1000000000E+1
31
32 /* ln(3)/2 */
33 #define K1  0.5493061443E+0
34 /* SBIG=[ln(2)+(t+1)*ln(B)]/2 */
35 #define SBIG 9.01091
36
37 #define P(g) ((P1*g+P0)*g)
38 #define Q(g) (Q1*g+Q0)
39
40 float tanhf(const float x) _FLOAT_FUNC_REENTRANT
41 {
42     float f, g, r;
43
44     f=fabsf(x);
45     if(f>SBIG) r=1.0;
46     else if(f>K1)
47     {
48         r=0.5-1.0/(expf(f+f)+1.0);
49         r+=r;
50     }
51     else if(f<EPS) r=f;
52     else
53     {
54         g=f*f;
55         r=f+f*(P(g)/Q(g));
56     }
57     if(x<0.0) r=-r;
58     return r;
59 }
60