Imported Upstream version 2.9.0
[debian/cc1111] / device / lib / pic16 / libm / sincoshf.c
1 /*  sincoshf.c: Computes sinh or cosh of 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 /*
25 ** $Id: sincoshf.c 3654 2005-01-24 10:38:53Z vrokas $
26 */
27
28 #include <math.h>
29 #include <errno.h>
30
31 #define P0 -0.713793159E+1
32 #define P1 -0.190333999E+0
33 #define Q0 -0.428277109E+2
34 #define Q1  0.100000000E+1
35
36 #define P(z) (P1*z+P0)
37 #define Q(z) (Q1*z+Q0)
38
39 #define K1 0.69316101074218750000E+0 /* ln(v)   */
40 #define K2 0.24999308500451499336E+0 /* v**(-2) */
41 #define K3 0.13830277879601902638E-4 /* v/2-1   */
42
43 //WMAX is defined as ln(XMAX)-ln(v)+0.69
44 #define WMAX 44.93535952E+0
45 //WBAR 0.35*(b+1)
46 #define WBAR 1.05
47 #define YBAR 9.0 /*Works for me*/
48
49 float sincoshf(const float x, const int iscosh)
50 {
51     float y, w, z;
52     char sign;
53     
54     if (x<0.0) { y=-x; sign=1; }
55           else { y=x;  sign=0; }
56
57     if ((y>1.0) || iscosh)
58     {
59         if(y>YBAR)
60         {
61             w=y-K1;
62             if (w>WMAX)
63             {
64                 errno=ERANGE;
65                 z=XMAX;
66             }
67             else
68             {
69                 z=expf(w);
70                 z+=K3*z;
71             }
72         }
73         else
74         {
75             z=expf(y);
76             w=1.0/z;
77             if(!iscosh) w=-w;
78             z=(z+w)*0.5;
79         }
80         if(sign) z=-z;
81     }
82     else
83     {
84         if (y<EPS)
85             z=x;
86         else
87         {
88             z=x*x;
89             z=x+x*z*P(z)/Q(z);
90         }
91     }
92     return z;
93 }