base/math/s_cbrt.c

Go to the documentation of this file.
00001 /* @(#)s_cbrt.c 5.1 93/09/24 */
00002 /*
00003  * ====================================================
00004  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
00005  *
00006  * Developed at SunPro, a Sun Microsystems, Inc. business.
00007  * Permission to use, copy, modify, and distribute this
00008  * software is freely granted, provided that this notice 
00009  * is preserved.
00010  * ====================================================
00011  */
00012 
00013 #if defined(LIBM_SCCS) && !defined(lint)
00014 static char rcsid[] = "$NetBSD: s_cbrt.c,v 1.8 1995/05/10 20:46:49 jtc Exp $";
00015 #endif
00016 
00017 #include "math.h"
00018 #include "mathP.h"
00019 
00020 /* cbrt(x)
00021  * Return cube root of x
00022  */
00023 #ifdef __STDC__
00024 static const u_int32_t
00025 #else
00026 static u_int32_t
00027 #endif
00028     B1 = 715094163, /* B1 = (682-0.03306235651)*2**20 */
00029     B2 = 696219795; /* B2 = (664-0.03306235651)*2**20 */
00030 
00031 #ifdef __STDC__
00032 static const double
00033 #else
00034 static double
00035 #endif
00036 C =  5.42857142857142815906e-01, /* 19/35     = 0x3FE15F15, 0xF15F15F1 */
00037 D = -7.05306122448979611050e-01, /* -864/1225 = 0xBFE691DE, 0x2532C834 */
00038 E =  1.41428571428571436819e+00, /* 99/70     = 0x3FF6A0EA, 0x0EA0EA0F */
00039 F =  1.60714285714285720630e+00, /* 45/28     = 0x3FF9B6DB, 0x6DB6DB6E */
00040 G =  3.57142857142857150787e-01; /* 5/14      = 0x3FD6DB6D, 0xB6DB6DB7 */
00041 
00042 #ifdef __STDC__
00043     double cbrt(double x) 
00044 #else
00045     double cbrt(x) 
00046     double x;
00047 #endif
00048 {
00049     int32_t hx;
00050     double r,s,t=0.0,w;
00051     u_int32_t sign;
00052     u_int32_t high,low;
00053 
00054     GET_HIGH_WORD(hx,x);
00055     sign=hx&0x80000000;         /* sign= sign(x) */
00056     hx  ^=sign;
00057     if(hx>=0x7ff00000) return(x+x); /* cbrt(NaN,INF) is itself */
00058     GET_LOW_WORD(low,x);
00059     if((hx|low)==0) 
00060         return(x);      /* cbrt(0) is itself */
00061 
00062     SET_HIGH_WORD(x,hx);    /* x <- |x| */
00063     /* rough cbrt to 5 bits */
00064     if(hx<0x00100000)       /* subnormal number */
00065       {SET_HIGH_WORD(t,0x43500000); /* set t= 2**54 */
00066        t*=x; GET_HIGH_WORD(high,t); SET_HIGH_WORD(t,high/3+B2);
00067       }
00068     else
00069       SET_HIGH_WORD(t,hx/3+B1);
00070 
00071 
00072     /* new cbrt to 23 bits, may be implemented in single precision */
00073     r=t*t/x;
00074     s=C+r*t;
00075     t*=G+F/(s+E+D/s);   
00076 
00077     /* chopped to 20 bits and make it larger than cbrt(x) */ 
00078     GET_HIGH_WORD(high,t);
00079     INSERT_WORDS(t,high+0x00000001,0);
00080 
00081 
00082     /* one step newton iteration to 53 bits with error less than 0.667 ulps */
00083     s=t*t;      /* t*t is exact */
00084     r=x/s;
00085     w=t+t;
00086     r=(r-t)/(w+r);  /* r-s is exact */
00087     t=t+t*r;
00088 
00089     /* retore the sign bit */
00090     GET_HIGH_WORD(high,t);
00091     SET_HIGH_WORD(t,high|sign);
00092     return(t);
00093 }

Generated on Tue Feb 2 17:46:05 2010 for RTAI API by  doxygen 1.4.7