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

VxWorks

开发平台:

C/C++

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