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

VxWorks

开发平台:

C/C++

  1. /* acosh.c - ANSI math routines */
  2. /* Copyright 1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01d,14oct92,jdi  made acosh() nomanual.
  7. 01c,13oct92,jdi  mangen fixes
  8. 01b,20sep92,smb  documentation additions
  9. 01a,08jul92,smb  documentation
  10. */
  11. /*
  12. DESCRIPTION
  13. * Copyright (c) 1985 Regents of the University of California.
  14. * All rights reserved.
  15. *
  16. * Redistribution and use in source and binary forms are permitted
  17. * provided that the above copyright notice and this paragraph are
  18. * duplicated in all such forms and that any documentation,
  19. * advertising materials, and other materials related to such
  20. * distribution and use acknowledge that the software was developed
  21. * by the University of California, Berkeley.  The name of the
  22. * University may not be used to endorse or promote products derived
  23. * from this software without specific prior written permission.
  24. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  25. * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  26. * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  27. *
  28. * All recipients should regard themselves as participants in an ongoing
  29. * research project and hence should feel obligated to report their
  30. * experiences (good or bad) with these elementary function codes, using
  31. * the sendbug(8) program, to the authors.
  32. *
  33. SEE ALSO: American National Standard X3.159-1989
  34. NOMANUAL
  35. */
  36. #include "vxWorks.h"
  37. #include "math.h"
  38. #if defined(vax)||defined(tahoe) /* VAX D format */
  39. #ifdef vax
  40. #define _0x(A,B) 0x/**/A/**/B
  41. #else /* vax */
  42. #define _0x(A,B) 0x/**/B/**/A
  43. #endif /* vax */
  44. /* static double */
  45. /* ln2hi  =  6.9314718055829871446E-1    , Hex  2^  0   *  .B17217F7D00000 */
  46. /* ln2lo  =  1.6465949582897081279E-12   ; Hex  2^-39   *  .E7BCD5E4F1D9CC */
  47. static long     ln2hix[] = { _0x(7217,4031), _0x(0000,f7d0)};
  48. static long     ln2lox[] = { _0x(bcd5,2ce7), _0x(d9cc,e4f1)};
  49. #define    ln2hi    (*(double*)ln2hix)
  50. #define    ln2lo    (*(double*)ln2lox)
  51. #else /* defined(vax)||defined(tahoe) */
  52. static double
  53. ln2hi  =  6.9314718036912381649E-1    , /*Hex  2^ -1   *  1.62E42FEE00000 */
  54. ln2lo  =  1.9082149292705877000E-10   ; /*Hex  2^-33   *  1.A39EF35793C76 */
  55. #endif /* defined(vax)||defined(tahoe) */
  56. /*****************************************************************************
  57. *
  58. * acosh - compute the inverse hyperbolic cosine of <x>
  59. *
  60. * This routine returns the inverse hyperbolic cosine of <x>
  61. * in double precision (VAX D Format 56 BITS, IEEE Double 53 BITS).
  62. *
  63. * Required system support function: sqrt()
  64. *
  65. * Required kernel function:
  66. * .CS
  67. * log1p(x)  ...return log(1+x)
  68. * .CE
  69. *
  70. * Based on acosh(x) = log [ x + sqrt(x*x-1) ] we have
  71. * .CS
  72. *     acosh(x) := log1p(x)+ln2, if (x > 1.0E20); else
  73. *     acosh(x) := log1p( sqrt(x-1) * (sqrt(x-1) + sqrt(x+1)) ) .
  74. * .CE
  75. * These formulae avoid the over/underflow complication.
  76. *
  77. * Special cases are acosh(x) is NaN with signal if x<1 and acosh(NaN) 
  78. * is NaN without signal.
  79. *
  80. * RETURNS: The inverse hyperbolic cosine of <x>.
  81. * It returns the exact inverse hyperbolic cosine of <x> nearly
  82. * rounded. In a test run with 512,000 random arguments on a VAX, the
  83. * maximum observed error was 3.30 ulps (units of the last place) at
  84. * x=1.0070493753568216.
  85. *
  86. * INTERNAL
  87. * Coded IN C BY K.C. NG, 2/16/85;
  88. * Revised BY K.C. NG on 3/6/85, 3/24/85, 4/16/85, 8/17/85.
  89. *
  90. * NOMANUAL
  91. */
  92. double acosh(x)
  93. double x;
  94. {
  95. double log1p(),sqrt(),t,big=1.E20; /* big+1==big */
  96. #if !defined(vax)&&!defined(tahoe)
  97. if(x!=x) return(x); /* x is NaN */
  98. #endif /* !defined(vax)&&!defined(tahoe) */
  99.     /* return log1p(x) + log(2) if x is large */
  100. if(x>big) {t=log1p(x)+ln2lo; return(t+ln2hi);}
  101. t=sqrt(x-1.0);
  102. return(log1p(t*(t+sqrt(x+1.0))));
  103. }