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