cbrt.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:3k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* cbrt.c - software cube-root function */
  2. /* Copyright 1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01a,30jul92,smb  documentation.
  7. */
  8. /*
  9. DESCRIPTION
  10. * Copyright (c) 1985 Regents of the University of California.
  11. * All rights reserved.
  12. *
  13. * Redistribution and use in source and binary forms are permitted
  14. * provided that the above copyright notice and this paragraph are
  15. * duplicated in all such forms and that any documentation,
  16. * advertising materials, and other materials related to such
  17. * distribution and use acknowledge that the software was developed
  18. * by the University of California, Berkeley.  The name of the
  19. * University may not be used to endorse or promote products derived
  20. * from this software without specific prior written permission.
  21. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  22. * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  23. * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  24. *
  25. * All recipients should regard themselves as participants in an ongoing
  26. * research project and hence should feel obligated to report their
  27. * experiences (good or bad) with these elementary function codes, using
  28. * the sendbug(8) program, to the authors.
  29. *
  30. #ifndef lint
  31. SEE ALSO: American National Standard X3.159-1989
  32. */
  33. #include "vxWorks.h"
  34. #include "math.h"
  35. #if !defined(vax)&&!defined(tahoe)
  36. static unsigned long B1 = 715094163, /* B1 = (682-0.03306235651)*2**20 */
  37.              B2 = 696219795; /* B2 = (664-0.03306235651)*2**20 */
  38. static double
  39.     C= 19./35.,
  40.     D= -864./1225.,
  41.     E= 99./70.,
  42.     F= 45./28.,
  43.     G= 5./14.;
  44. /*****************************************************************************
  45. * cbrt -
  46. *
  47. * kahan's cube root (53 bits IEEE double precision)
  48. * for IEEE machines only
  49. * coded in C by K.C. Ng, 4/30/85
  50. *
  51. * Accuracy:
  52. * better than 0.667 ulps according to an error analysis. Maximum
  53. * error observed was 0.666 ulps in an 1,000,000 random arguments test.
  54. *
  55. * Warning: this code is semi machine dependent; the ordering of words in
  56. * a floating point number must be known in advance. I assume that the
  57. * long interger at the address of a floating point number will be the
  58. * leading 32 bits of that floating point number (i.e., sign, exponent,
  59. * and the 20 most significant bits).
  60. * On a National machine, it has different ordering; therefore, this code
  61. * must be compiled with flag -DNATIONAL.
  62. */
  63. double cbrt(x)
  64. double x;
  65. {
  66. double r,s,t=0.0,w;
  67. unsigned long *px = (unsigned long *) &x,
  68.               *pt = (unsigned long *) &t,
  69.       mexp,sign;
  70. #ifdef national /* ordering of words in a floating points number */
  71. int n0=1,n1=0;
  72. #else /* national */
  73. int n0=0,n1=1;
  74. #endif /* national */
  75. mexp=px[n0]&0x7ff00000;
  76. if(mexp==0x7ff00000) return(x); /* cbrt(NaN,INF) is itself */
  77. if(x==0.0) return(x); /* cbrt(0) is itself */
  78. sign=px[n0]&0x80000000; /* sign= sign(x) */
  79. px[n0] ^= sign; /* x=|x| */
  80.     /* rough cbrt to 5 bits */
  81. if(mexp==0)  /* subnormal number */
  82.   {pt[n0]=0x43500000;  /* set t= 2**54 */
  83.    t*=x; pt[n0]=pt[n0]/3+B2;
  84.   }
  85. else
  86.   pt[n0]=px[n0]/3+B1;
  87.     /* new cbrt to 23 bits, may be implemented in single precision */
  88. r=t*t/x;
  89. s=C+r*t;
  90. t*=G+F/(s+E+D/s);
  91.     /* chopped to 20 bits and make it larger than cbrt(x) */
  92. pt[n1]=0; pt[n0]+=0x00000001;
  93.     /* one step newton iteration to 53 bits with error less than 0.667 ulps */
  94. s=t*t; /* t*t is exact */
  95. r=x/s;
  96. w=t+t;
  97. r=(r-t)/(w+r); /* r-t is exact */
  98. t=t+t*r;
  99.     /* retore the sign bit */
  100. pt[n0] |= sign;
  101. return(t);
  102. }
  103. #endif