home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / GCC / GERLIB_DEV08B.LHA / gerlib / Bonus / normal / atan2.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-12  |  10.7 KB  |  296 lines

  1. /*
  2.  * Copyright (c) 1985 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  *    This product includes software developed by the University of
  16.  *    California, Berkeley and its contributors.
  17.  * 4. Neither the name of the University nor the names of its contributors
  18.  *    may be used to endorse or promote products derived from this software
  19.  *    without specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  */
  33.  
  34. /* Some changes for amiga Sat Oct  2 20:23:53 1993 GM */
  35.  
  36. #if defined(LIBC_SCCS) && !defined(lint)
  37. static char sccsid[] = "@(#)atan2.c    5.6 (Berkeley) 10/9/90";
  38. #endif /* LIBC_SCCS and not lint */
  39.  
  40. /* ATAN2(Y,X)
  41.  * RETURN ARG (X+iY)
  42.  * DOUBLE PRECISION (VAX D format 56 bits, IEEE DOUBLE 53 BITS)
  43.  * CODED IN C BY K.C. NG, 1/8/85; 
  44.  * REVISED BY K.C. NG on 2/7/85, 2/13/85, 3/7/85, 3/30/85, 6/29/85.
  45.  *
  46.  * Required system supported functions :
  47.  *    copysign(x,y)
  48.  *    scalb(x,y)
  49.  *    logb(x)
  50.  *    
  51.  * Method :
  52.  *    1. Reduce y to positive by atan2(y,x)=-atan2(-y,x).
  53.  *    2. Reduce x to positive by (if x and y are unexceptional): 
  54.  *        ARG (x+iy) = arctan(y/x)          ... if x > 0,
  55.  *        ARG (x+iy) = pi - arctan[y/(-x)]   ... if x < 0,
  56.  *    3. According to the integer k=4t+0.25 truncated , t=y/x, the argument 
  57.  *       is further reduced to one of the following intervals and the
  58.  *       arctangent of y/x is evaluated by the corresponding formula:
  59.  *
  60.  *         [0,7/16]       atan(y/x) = t - t^3*(a1+t^2*(a2+...(a10+t^2*a11)...)
  61.  *       [7/16,11/16]    atan(y/x) = atan(1/2) + atan( (y-x/2)/(x+y/2) )
  62.  *       [11/16.19/16]   atan(y/x) = atan( 1 ) + atan( (y-x)/(x+y) )
  63.  *       [19/16,39/16]   atan(y/x) = atan(3/2) + atan( (y-1.5x)/(x+1.5y) )
  64.  *       [39/16,INF]     atan(y/x) = atan(INF) + atan( -x/y )
  65.  *
  66.  * Special cases:
  67.  * Notations: atan2(y,x) == ARG (x+iy) == ARG(x,y).
  68.  *
  69.  *    ARG( NAN , (anything) ) is NaN;
  70.  *    ARG( (anything), NaN ) is NaN;
  71.  *    ARG(+(anything but NaN), +-0) is +-0  ;
  72.  *    ARG(-(anything but NaN), +-0) is +-PI ;
  73.  *    ARG( 0, +-(anything but 0 and NaN) ) is +-PI/2;
  74.  *    ARG( +INF,+-(anything but INF and NaN) ) is +-0 ;
  75.  *    ARG( -INF,+-(anything but INF and NaN) ) is +-PI;
  76.  *    ARG( +INF,+-INF ) is +-PI/4 ;
  77.  *    ARG( -INF,+-INF ) is +-3PI/4;
  78.  *    ARG( (anything but,0,NaN, and INF),+-INF ) is +-PI/2;
  79.  *
  80.  * Accuracy:
  81.  *    atan2(y,x) returns (PI/pi) * the exact ARG (x+iy) nearly rounded, 
  82.  *    where
  83.  *
  84.  *    in decimal:
  85.  *        pi = 3.141592653589793 23846264338327 .....
  86.  *    53 bits   PI = 3.141592653589793 115997963 ..... ,
  87.  *    56 bits   PI = 3.141592653589793 227020265 ..... ,  
  88.  *
  89.  *    in hexadecimal:
  90.  *        pi = 3.243F6A8885A308D313198A2E....
  91.  *    53 bits   PI = 3.243F6A8885A30  =  2 * 1.921FB54442D18    error=.276ulps
  92.  *    56 bits   PI = 3.243F6A8885A308 =  4 * .C90FDAA22168C2    error=.206ulps
  93.  *    
  94.  *    In a test run with 356,000 random argument on [-1,1] * [-1,1] on a
  95.  *    VAX, the maximum observed error was 1.41 ulps (units of the last place)
  96.  *    compared with (PI/pi)*(the exact ARG(x+iy)).
  97.  *
  98.  * Note:
  99.  *    We use machine PI (the true pi rounded) in place of the actual
  100.  *    value of pi for all the trig and inverse trig functions. In general, 
  101.  *    if trig is one of sin, cos, tan, then computed trig(y) returns the
  102.  *    exact trig(y*pi/PI) nearly rounded; correspondingly, computed arctrig
  103.  *    returns the exact arctrig(y)*PI/pi nearly rounded. These guarantee the
  104.  *    trig functions have period PI, and trig(arctrig(x)) returns x for
  105.  *    all critical values x.
  106.  *
  107.  * Constants:
  108.  * The hexadecimal values are the intended ones for the following constants.
  109.  * The decimal values may be used, provided that the compiler will convert
  110.  * from decimal to binary accurately enough to produce the hexadecimal values
  111.  * shown.
  112.  */
  113.  
  114. #ifdef amiga
  115. #  define vc(name, value, x1,x2,x3,x4, bexp, xval) ;
  116. #  define ic(name, value, bexp, xval) \
  117.     static const double name = value;
  118.  
  119. double    copysign (double, double);
  120. int    finite (double);
  121. double    scalb (double, int);
  122. double    logb (double);
  123. #  undef vccast
  124. #else
  125. #include "mathimpl.h"
  126. #endif
  127.  
  128. vc(athfhi, 4.6364760900080611433E-1  ,6338,3fed,da7b,2b0d,  -1, .ED63382B0DDA7B)
  129. vc(athflo, 1.9338828231967579916E-19 ,5005,2164,92c0,9cfe, -62, .E450059CFE92C0)
  130. vc(PIo4,   7.8539816339744830676E-1  ,0fda,4049,68c2,a221,   0, .C90FDAA22168C2)
  131. vc(at1fhi, 9.8279372324732906796E-1  ,985e,407b,b4d9,940f,   0, .FB985E940FB4D9)
  132. vc(at1flo,-3.5540295636764633916E-18 ,1edc,a383,eaea,34d6, -57,-.831EDC34D6EAEA)
  133. vc(PIo2,   1.5707963267948966135E0   ,0fda,40c9,68c2,a221,   1, .C90FDAA22168C2)
  134. vc(PI,     3.1415926535897932270E0   ,0fda,4149,68c2,a221,   2, .C90FDAA22168C2)
  135. vc(a1,     3.3333333333333473730E-1  ,aaaa,3faa,ab75,aaaa,  -1, .AAAAAAAAAAAB75)
  136. vc(a2,    -2.0000000000017730678E-1  ,cccc,bf4c,946e,cccd,  -2,-.CCCCCCCCCD946E)
  137. vc(a3,     1.4285714286694640301E-1  ,4924,3f12,4262,9274,  -2, .92492492744262)
  138. vc(a4,    -1.1111111135032672795E-1  ,8e38,bee3,6292,ebc6,  -3,-.E38E38EBC66292)
  139. vc(a5,     9.0909091380563043783E-2  ,2e8b,3eba,d70c,b31b,  -3, .BA2E8BB31BD70C)
  140. vc(a6,    -7.6922954286089459397E-2  ,89c8,be9d,7f18,27c3,  -3,-.9D89C827C37F18)
  141. vc(a7,     6.6663180891693915586E-2  ,86b4,3e88,9e58,ae37,  -3, .8886B4AE379E58)
  142. vc(a8,    -5.8772703698290408927E-2  ,bba5,be70,a942,8481,  -4,-.F0BBA58481A942)
  143. vc(a9,     5.2170707402812969804E-2  ,b0f3,3e55,13ab,a1ab,  -4, .D5B0F3A1AB13AB)
  144. vc(a10,   -4.4895863157820361210E-2  ,e4b9,be37,048f,7fd1,  -4,-.B7E4B97FD1048F)
  145. vc(a11,    3.3006147437343875094E-2  ,3174,3e07,2d87,3cf7,  -4, .8731743CF72D87)
  146. vc(a12,   -1.4614844866464185439E-2  ,731a,bd6f,76d9,2f34,  -6,-.EF731A2F3476D9)
  147.  
  148. ic(athfhi, 4.6364760900080609352E-1  ,  -2,  1.DAC670561BB4F)
  149. ic(athflo, 4.6249969567426939759E-18 , -58,  1.5543B8F253271)
  150. ic(PIo4,   7.8539816339744827900E-1  ,  -1,  1.921FB54442D18)
  151. ic(at1fhi, 9.8279372324732905408E-1  ,  -1,  1.F730BD281F69B)
  152. ic(at1flo,-2.4407677060164810007E-17 , -56, -1.C23DFEFEAE6B5)
  153. ic(PIo2,   1.5707963267948965580E0   ,   0,  1.921FB54442D18)
  154. ic(PI,     3.1415926535897931160E0   ,   1,  1.921FB54442D18)
  155. ic(a1,     3.3333333333333942106E-1  ,  -2,  1.55555555555C3)
  156. ic(a2,    -1.9999999999979536924E-1  ,  -3, -1.9999999997CCD)
  157. ic(a3,     1.4285714278004377209E-1  ,  -3,  1.24924921EC1D7)
  158. ic(a4,    -1.1111110579344973814E-1  ,  -4, -1.C71C7059AF280)
  159. ic(a5,     9.0908906105474668324E-2  ,  -4,  1.745CE5AA35DB2)
  160. ic(a6,    -7.6919217767468239799E-2  ,  -4, -1.3B0FA54BEC400)
  161. ic(a7,     6.6614695906082474486E-2  ,  -4,  1.10DA924597FFF)
  162. ic(a8,    -5.8358371008508623523E-2  ,  -5, -1.DE125FDDBD793)
  163. ic(a9,     4.9850617156082015213E-2  ,  -5,  1.9860524BDD807)
  164. ic(a10,   -3.6700606902093604877E-2  ,  -5, -1.2CA6C04C6937A)
  165. ic(a11,    1.6438029044759730479E-2  ,  -6,  1.0D52174A1BB54)
  166.  
  167. #ifdef vccast
  168. #define    athfhi    vccast(athfhi)
  169. #define    athflo    vccast(athflo)
  170. #define    PIo4    vccast(PIo4)
  171. #define    at1fhi    vccast(at1fhi)
  172. #define    at1flo    vccast(at1flo)
  173. #define    PIo2    vccast(PIo2)
  174. #define    PI    vccast(PI)
  175. #define    a1    vccast(a1)
  176. #define    a2    vccast(a2)
  177. #define    a3    vccast(a3)
  178. #define    a4    vccast(a4)
  179. #define    a5    vccast(a5)
  180. #define    a6    vccast(a6)
  181. #define    a7    vccast(a7)
  182. #define    a8    vccast(a8)
  183. #define    a9    vccast(a9)
  184. #define    a10    vccast(a10)
  185. #define    a11    vccast(a11)
  186. #define    a12    vccast(a12)
  187. #endif
  188.  
  189. double atan2(y,x)
  190. double  y,x;
  191. {
  192.     static const double zero=0, one=1, small=1.0E-9, big=1.0E18;
  193.     double t,z,signy,signx,hi,lo;
  194.     int k,m;
  195.  
  196. #if !defined(vax)&&!defined(tahoe)
  197.     /* if x or y is NAN */
  198.     if(x!=x) return(x); if(y!=y) return(y);
  199. #endif    /* !defined(vax)&&!defined(tahoe) */
  200.  
  201.     /* copy down the sign of y and x */
  202.     signy = copysign(one,y) ;
  203.     signx = copysign(one,x) ;
  204.  
  205.     /* if x is 1.0, goto begin */
  206.     if(x==1) { y=copysign(y,one); t=y; if(finite(t)) goto begin;}
  207.  
  208.     /* when y = 0 */
  209.     if(y==zero) return((signx==one)?y:copysign(PI,signy));
  210.  
  211.     /* when x = 0 */
  212.     if(x==zero) return(copysign(PIo2,signy));
  213.  
  214.     /* when x is INF */
  215.     if(!finite(x))
  216.         if(!finite(y))
  217.         return(copysign((signx==one)?PIo4:3*PIo4,signy));
  218.         else
  219.         return(copysign((signx==one)?zero:PI,signy));
  220.  
  221.     /* when y is INF */
  222.     if(!finite(y)) return(copysign(PIo2,signy));
  223.  
  224.     /* compute y/x */
  225.     x=copysign(x,one);
  226.     y=copysign(y,one);
  227.     if((m=(k=logb(y))-logb(x)) > 60) t=big+big;
  228.         else if(m < -80 ) t=y/x;
  229.         else { t = y/x ; y = scalb(y,-k); x=scalb(x,-k); }
  230.  
  231.     /* begin argument reduction */
  232. begin:
  233.     if (t < 2.4375) {
  234.  
  235.     /* truncate 4(t+1/16) to integer for branching */
  236.         k = 4 * (t+0.0625);
  237.         switch (k) {
  238.  
  239.         /* t is in [0,7/16] */
  240.         case 0:
  241.         case 1:
  242.         if (t < small)
  243.             { big + small ;  /* raise inexact flag */
  244.               return (copysign((signx>zero)?t:PI-t,signy)); }
  245.  
  246.         hi = zero;  lo = zero;  break;
  247.  
  248.         /* t is in [7/16,11/16] */
  249.         case 2:
  250.         hi = athfhi; lo = athflo;
  251.         z = x+x;
  252.         t = ( (y+y) - x ) / ( z +  y ); break;
  253.  
  254.         /* t is in [11/16,19/16] */
  255.         case 3:
  256.         case 4:
  257.         hi = PIo4; lo = zero;
  258.         t = ( y - x ) / ( x + y ); break;
  259.  
  260.         /* t is in [19/16,39/16] */
  261.         default:
  262.         hi = at1fhi; lo = at1flo;
  263.         z = y-x; y=y+y+y; t = x+x;
  264.         t = ( (z+z)-x ) / ( t + y ); break;
  265.         }
  266.     }
  267.     /* end of if (t < 2.4375) */
  268.  
  269.     else
  270.     {
  271.         hi = PIo2; lo = zero;
  272.  
  273.         /* t is in [2.4375, big] */
  274.         if (t <= big)  t = - x / y;
  275.  
  276.         /* t is in [big, INF] */
  277.         else
  278.           { big+small;    /* raise inexact flag */
  279.         t = zero; }
  280.     }
  281.     /* end of argument reduction */
  282.  
  283.     /* compute atan(t) for t in [-.4375, .4375] */
  284.     z = t*t;
  285. #if defined(vax)||defined(tahoe)
  286.     z = t*(z*(a1+z*(a2+z*(a3+z*(a4+z*(a5+z*(a6+z*(a7+z*(a8+
  287.             z*(a9+z*(a10+z*(a11+z*a12))))))))))));
  288. #else    /* defined(vax)||defined(tahoe) */
  289.     z = t*(z*(a1+z*(a2+z*(a3+z*(a4+z*(a5+z*(a6+z*(a7+z*(a8+
  290.             z*(a9+z*(a10+z*a11)))))))))));
  291. #endif    /* defined(vax)||defined(tahoe) */
  292.     z = lo - z; z += t; z += hi;
  293.  
  294.     return(copysign((signx>zero)?z:PI-z,signy));
  295. }
  296.