n_cbrt.c revision 1.5 1 1.5 agc /* $NetBSD: n_cbrt.c,v 1.5 2003/08/07 16:44:50 agc Exp $ */
2 1.1 ragge /*
3 1.1 ragge * Copyright (c) 1985, 1993
4 1.1 ragge * The Regents of the University of California. All rights reserved.
5 1.1 ragge *
6 1.1 ragge * Redistribution and use in source and binary forms, with or without
7 1.1 ragge * modification, are permitted provided that the following conditions
8 1.1 ragge * are met:
9 1.1 ragge * 1. Redistributions of source code must retain the above copyright
10 1.1 ragge * notice, this list of conditions and the following disclaimer.
11 1.1 ragge * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 ragge * notice, this list of conditions and the following disclaimer in the
13 1.1 ragge * documentation and/or other materials provided with the distribution.
14 1.5 agc * 3. Neither the name of the University nor the names of its contributors
15 1.1 ragge * may be used to endorse or promote products derived from this software
16 1.1 ragge * without specific prior written permission.
17 1.1 ragge *
18 1.1 ragge * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 1.1 ragge * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 1.1 ragge * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 1.1 ragge * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 1.1 ragge * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 1.1 ragge * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 1.1 ragge * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 1.1 ragge * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 1.1 ragge * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 1.1 ragge * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 1.1 ragge * SUCH DAMAGE.
29 1.1 ragge */
30 1.1 ragge
31 1.1 ragge #ifndef lint
32 1.1 ragge static char sccsid[] = "@(#)cbrt.c 8.1 (Berkeley) 6/4/93";
33 1.1 ragge #endif /* not lint */
34 1.1 ragge
35 1.1 ragge #include <sys/cdefs.h>
36 1.1 ragge
37 1.1 ragge /* kahan's cube root (53 bits IEEE double precision)
38 1.1 ragge * for IEEE machines only
39 1.1 ragge * coded in C by K.C. Ng, 4/30/85
40 1.1 ragge *
41 1.1 ragge * Accuracy:
42 1.1 ragge * better than 0.667 ulps according to an error analysis. Maximum
43 1.1 ragge * error observed was 0.666 ulps in an 1,000,000 random arguments test.
44 1.1 ragge *
45 1.1 ragge * Warning: this code is semi machine dependent; the ordering of words in
46 1.1 ragge * a floating point number must be known in advance. I assume that the
47 1.1 ragge * long interger at the address of a floating point number will be the
48 1.1 ragge * leading 32 bits of that floating point number (i.e., sign, exponent,
49 1.1 ragge * and the 20 most significant bits).
50 1.3 simonb * On a National machine, it has different ordering; therefore, this code
51 1.3 simonb * must be compiled with flag -DNATIONAL.
52 1.1 ragge */
53 1.2 matt #if !defined(__vax__)&&!defined(tahoe)
54 1.1 ragge
55 1.1 ragge static const unsigned long
56 1.1 ragge B1 = 715094163, /* B1 = (682-0.03306235651)*2**20 */
57 1.1 ragge B2 = 696219795; /* B2 = (664-0.03306235651)*2**20 */
58 1.1 ragge static const double
59 1.1 ragge C= 19./35.,
60 1.1 ragge D= -864./1225.,
61 1.1 ragge E= 99./70.,
62 1.1 ragge F= 45./28.,
63 1.1 ragge G= 5./14.;
64 1.1 ragge
65 1.4 matt double
66 1.4 matt cbrt(double x)
67 1.1 ragge {
68 1.1 ragge double r,s,t=0.0,w;
69 1.1 ragge unsigned long *px = (unsigned long *) &x,
70 1.1 ragge *pt = (unsigned long *) &t,
71 1.1 ragge mexp,sign;
72 1.1 ragge
73 1.1 ragge #ifdef national /* ordering of words in a floating points number */
74 1.1 ragge const int n0=1,n1=0;
75 1.1 ragge #else /* national */
76 1.1 ragge const int n0=0,n1=1;
77 1.1 ragge #endif /* national */
78 1.1 ragge
79 1.1 ragge mexp=px[n0]&0x7ff00000;
80 1.1 ragge if(mexp==0x7ff00000) return(x); /* cbrt(NaN,INF) is itself */
81 1.1 ragge if(x==0.0) return(x); /* cbrt(0) is itself */
82 1.1 ragge
83 1.1 ragge sign=px[n0]&0x80000000; /* sign= sign(x) */
84 1.1 ragge px[n0] ^= sign; /* x=|x| */
85 1.1 ragge
86 1.1 ragge
87 1.1 ragge /* rough cbrt to 5 bits */
88 1.1 ragge if(mexp==0) /* subnormal number */
89 1.1 ragge {pt[n0]=0x43500000; /* set t= 2**54 */
90 1.1 ragge t*=x; pt[n0]=pt[n0]/3+B2;
91 1.1 ragge }
92 1.1 ragge else
93 1.3 simonb pt[n0]=px[n0]/3+B1;
94 1.1 ragge
95 1.1 ragge
96 1.1 ragge /* new cbrt to 23 bits, may be implemented in single precision */
97 1.1 ragge r=t*t/x;
98 1.1 ragge s=C+r*t;
99 1.3 simonb t*=G+F/(s+E+D/s);
100 1.1 ragge
101 1.3 simonb /* chopped to 20 bits and make it larger than cbrt(x) */
102 1.1 ragge pt[n1]=0; pt[n0]+=0x00000001;
103 1.1 ragge
104 1.1 ragge
105 1.1 ragge /* one step newton iteration to 53 bits with error less than 0.667 ulps */
106 1.1 ragge s=t*t; /* t*t is exact */
107 1.1 ragge r=x/s;
108 1.1 ragge w=t+t;
109 1.1 ragge r=(r-t)/(w+r); /* r-t is exact */
110 1.1 ragge t=t+t*r;
111 1.1 ragge
112 1.1 ragge
113 1.1 ragge /* retore the sign bit */
114 1.1 ragge pt[n0] |= sign;
115 1.1 ragge return(t);
116 1.1 ragge }
117 1.1 ragge #endif
118