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

VxWorks

开发平台:

C/C++

  1. /* exp.c - math routines */
  2. /* Copyright 1992-1993 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01e,05feb93,jdi  doc changes based on kdl review.
  7. 01d,02dec92,jdi  doc tweaks.
  8. 01c,28oct92,jdi  documentation cleanup.
  9. 01b,20sep92,smb  documentation additions
  10. 01a,08jul92,smb  documentation.
  11. */
  12. /*
  13. DESCRIPTION
  14. * Copyright (c) 1985 Regents of the University of California.
  15. * All rights reserved.
  16. *
  17. * Redistribution and use in source and binary forms are permitted
  18. * provided that the above copyright notice and this paragraph are
  19. * duplicated in all such forms and that any documentation,
  20. * advertising materials, and other materials related to such
  21. * distribution and use acknowledge that the software was developed
  22. * by the University of California, Berkeley.  The name of the
  23. * University may not be used to endorse or promote products derived
  24. * from this software without specific prior written permission.
  25. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  26. * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  27. * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  28. *
  29. * All recipients should regard themselves as participants in an ongoing
  30. * research project and hence should feel obligated to report their
  31. * experiences (good or bad) with these elementary function codes, using
  32. * the sendbug(8) program, to the authors.
  33. *
  34. SEE ALSO: American National Standard X3.159-1989
  35. NOMANUAL
  36. */
  37. #include "vxWorks.h"
  38. #include "math.h"
  39. #if defined(vax)||defined(tahoe) /* VAX D format */
  40. #ifdef vax
  41. #define _0x(A,B) 0x/**/A/**/B
  42. #else /* vax */
  43. #define _0x(A,B) 0x/**/B/**/A
  44. #endif /* vax */
  45. /* static double */
  46. /* ln2hi  =  6.9314718055829871446E-1    , Hex  2^  0   *  .B17217F7D00000 */
  47. /* ln2lo  =  1.6465949582897081279E-12   , Hex  2^-39   *  .E7BCD5E4F1D9CC */
  48. /* lnhuge =  9.4961163736712506989E1     , Hex  2^  7   *  .BDEC1DA73E9010 */
  49. /* lntiny = -9.5654310917272452386E1     , Hex  2^  7   * -.BF4F01D72E33AF */
  50. /* invln2 =  1.4426950408889634148E0     ; Hex  2^  1   *  .B8AA3B295C17F1 */
  51. /* p1     =  1.6666666666666602251E-1    , Hex  2^-2    *  .AAAAAAAAAAA9F1 */
  52. /* p2     = -2.7777777777015591216E-3    , Hex  2^-8    * -.B60B60B5F5EC94 */
  53. /* p3     =  6.6137563214379341918E-5    , Hex  2^-13   *  .8AB355792EF15F */
  54. /* p4     = -1.6533902205465250480E-6    , Hex  2^-19   * -.DDEA0E2E935F84 */
  55. /* p5     =  4.1381367970572387085E-8    , Hex  2^-24   *  .B1BB4B95F52683 */
  56. static long     ln2hix[] = { _0x(7217,4031), _0x(0000,f7d0)};
  57. static long     ln2lox[] = { _0x(bcd5,2ce7), _0x(d9cc,e4f1)};
  58. static long    lnhugex[] = { _0x(ec1d,43bd), _0x(9010,a73e)};
  59. static long    lntinyx[] = { _0x(4f01,c3bf), _0x(33af,d72e)};
  60. static long    invln2x[] = { _0x(aa3b,40b8), _0x(17f1,295c)};
  61. static long        p1x[] = { _0x(aaaa,3f2a), _0x(a9f1,aaaa)};
  62. static long        p2x[] = { _0x(0b60,bc36), _0x(ec94,b5f5)};
  63. static long        p3x[] = { _0x(b355,398a), _0x(f15f,792e)};
  64. static long        p4x[] = { _0x(ea0e,b6dd), _0x(5f84,2e93)};
  65. static long        p5x[] = { _0x(bb4b,3431), _0x(2683,95f5)};
  66. #define    ln2hi    (*(double*)ln2hix)
  67. #define    ln2lo    (*(double*)ln2lox)
  68. #define   lnhuge    (*(double*)lnhugex)
  69. #define   lntiny    (*(double*)lntinyx)
  70. #define   invln2    (*(double*)invln2x)
  71. #define       p1    (*(double*)p1x)
  72. #define       p2    (*(double*)p2x)
  73. #define       p3    (*(double*)p3x)
  74. #define       p4    (*(double*)p4x)
  75. #define       p5    (*(double*)p5x)
  76. #else /* defined(vax)||defined(tahoe) */
  77. static double
  78. p1     =  1.6666666666666601904E-1    , /*Hex  2^-3    *  1.555555555553E */
  79. p2     = -2.7777777777015593384E-3    , /*Hex  2^-9    * -1.6C16C16BEBD93 */
  80. p3     =  6.6137563214379343612E-5    , /*Hex  2^-14   *  1.1566AAF25DE2C */
  81. p4     = -1.6533902205465251539E-6    , /*Hex  2^-20   * -1.BBD41C5D26BF1 */
  82. p5     =  4.1381367970572384604E-8    , /*Hex  2^-25   *  1.6376972BEA4D0 */
  83. ln2hi  =  6.9314718036912381649E-1    , /*Hex  2^ -1   *  1.62E42FEE00000 */
  84. ln2lo  =  1.9082149292705877000E-10   , /*Hex  2^-33   *  1.A39EF35793C76 */
  85. lnhuge =  7.1602103751842355450E2     , /*Hex  2^  9   *  1.6602B15B7ECF2 */
  86. lntiny = -7.5137154372698068983E2     , /*Hex  2^  9   * -1.77AF8EBEAE354 */
  87. invln2 =  1.4426950408889633870E0     ; /*Hex  2^  0   *  1.71547652B82FE */
  88. #endif /* defined(vax)||defined(tahoe) */
  89. /*****************************************************************************
  90. *
  91. * exp - compute an exponential value (ANSI)
  92. *
  93. * This routine returns the exponential value of <x> in
  94. * double precision (IEEE double, 53 bits).
  95. *
  96. * A range error occurs if <x> is too large.
  97. *
  98. * INTERNAL:
  99. * Method:
  100. * (1) Argument Reduction: given the input <x>, find <r> and integer <k>
  101. *     such that:
  102. *
  103. *         x = k*ln2 + r,  |r| <= 0.5*ln2
  104. *     <r> will be represented as r := z+c for better accuracy.
  105. * (2) Compute exp(r) by
  106. *
  107. *         exp(r) = 1 + r + r*R1/(2-R1)
  108. *
  109. *     where:
  110. *
  111. *         R1 = x - x^2*(p1+x^2*(p2+x^2*(p3+x^2*(p4+p5*x^2))))
  112. *
  113. * (3)     exp(x) = 2^k * exp(r)
  114. *
  115. * INCLUDE FILES: math.h
  116. *
  117. * RETURNS: The double-precision exponential value of <x>.
  118. *
  119. * Special cases:
  120. *     If <x> is +INF or NaN, exp() returns <x>.
  121. *     If <x> is -INF, it returns 0.
  122. *
  123. * SEE ALSO: mathALib
  124. *
  125. * INTERNAL:
  126. * Coded in C by K.C. Ng, 1/19/85;
  127. * Revised by K.C. Ng on 2/6/85, 2/15/85, 3/7/85, 3/24/85, 4/16/85, 6/14/86.
  128. */
  129. double exp
  130.     (
  131.     double x /* exponent */
  132.     )
  133.     {
  134. double scalb(), copysign(), z,hi,lo,c;
  135. int k,finite();
  136. #if !defined(vax)&&!defined(tahoe)
  137. if(x!=x) return(x); /* x is NaN */
  138. #endif /* !defined(vax)&&!defined(tahoe) */
  139. if( x <= lnhuge ) {
  140. if( x >= lntiny ) {
  141.     /* argument reduction : x --> x - k*ln2 */
  142. k=invln2*x+copysign(0.5,x); /* k=NINT(x/ln2) */
  143.     /* express x-k*ln2 as hi-lo and let x=hi-lo rounded */
  144. hi=x-k*ln2hi;
  145. x=hi-(lo=k*ln2lo);
  146.     /* return 2^k*[1+x+x*c/(2+c)]  */
  147. z=x*x;
  148. c= x - z*(p1+z*(p2+z*(p3+z*(p4+z*p5))));
  149. return  scalb(1.0+(hi-(lo-(x*c)/(2.0-c))),k);
  150. }
  151. /* end of x > lntiny */
  152. else
  153.      /* exp(-big#) underflows to zero */
  154.      if(finite(x))  return(scalb(1.0,-5000));
  155.      /* exp(-INF) is zero */
  156.      else return(0.0);
  157. }
  158. /* end of x < lnhuge */
  159. else
  160. /* exp(INF) is INF, exp(+big#) overflows to INF */
  161.     return( finite(x) ?  scalb(1.0,5000)  : x);
  162.     }