Imported Upstream version 2.9.0
[debian/cc1111] / device / lib / pic / libm / atanf.c
1 /*  atanf.c: Computes arctan 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: atanf.c 4776 2007-04-29 13:15:51Z borutr $
26 */
27
28 #include <math.h>
29 #include <errno.h>
30
31 #define P0 -0.4708325141E+0
32 #define P1 -0.5090958253E-1
33 #define Q0  0.1412500740E+1
34 #define Q1  0.1000000000E+1
35
36 #define P(g,f) ((P1*g+P0)*g*f)
37 #define Q(g) (Q1*g+Q0)
38
39 #define K1  0.2679491924 /* 2-sqrt(3) */
40 #define K2  0.7320508076 /* sqrt(3)-1 */
41 #define K3  1.7320508076 /* sqrt(3)   */
42
43 float atanf(const float x) _MATH_REENTRANT
44 {
45     float f, r, g;
46     int n=0;
47     static float a[]={  0.0, 0.5235987756, 1.5707963268, 1.0471975512 };
48
49     f=fabsf(x);
50     if(f>1.0)
51     {
52         f=1.0/f;
53         n=2;
54     }
55     if(f>K1)
56     {
57         f=((K2*f-1.0)+f)/(K3+f);
58         // What it is actually wanted is this more accurate formula,
59         // but SDCC optimizes it and then it does not work:
60         // f=(((K2*f-0.5)-0.5)+f)/(K3+f);
61         n++;
62     }
63     if(fabsf(f)<EPS) r=f;
64     else
65     {
66         g=f*f;
67         r=f+P(g,f)/Q(g);
68     }
69     if(n>1) r=-r;
70     r+=a[n];
71     if(x<0.0) r=-r;
72     return r;
73 }
74