e_atanh.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* @(#)e_atanh.c 1.3 95/01/18 */
  2. /*
  3. * ====================================================
  4. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  5. *
  6. * Developed at SunSoft, a Sun Microsystems, Inc. business.
  7. * Permission to use, copy, modify, and distribute this
  8. * software is freely granted, provided that this notice
  9. * is preserved.
  10. * ====================================================
  11. *
  12. */
  13. #include "cdefs-compat.h"
  14. //__FBSDID("$FreeBSD: src/lib/msun/src/e_atanh.c,v 1.8 2008/02/22 02:30:34 das Exp $");
  15. /* __ieee754_atanh(x)
  16. * Method :
  17. * 1.Reduced x to positive by atanh(-x) = -atanh(x)
  18. * 2.For x>=0.5
  19. * 1 2x x
  20. * atanh(x) = --- * log(1 + -------) = 0.5 * log1p(2 * --------)
  21. * 2 1 - x 1 - x
  22. *
  23. * For x<0.5
  24. * atanh(x) = 0.5*log1p(2x+2x*x/(1-x))
  25. *
  26. * Special cases:
  27. * atanh(x) is NaN if |x| > 1 with signal;
  28. * atanh(NaN) is that NaN with no signal;
  29. * atanh(+-1) is +-INF with signal.
  30. *
  31. */
  32. #include <openlibm_math.h>
  33. #include "math_private.h"
  34. static const double one = 1.0, huge = 1e300;
  35. static const double zero = 0.0;
  36. OLM_DLLEXPORT double
  37. __ieee754_atanh(double x)
  38. {
  39. double t;
  40. int32_t hx,ix;
  41. u_int32_t lx;
  42. EXTRACT_WORDS(hx,lx,x);
  43. ix = hx&0x7fffffff;
  44. if ((ix|((lx|(-lx))>>31))>0x3ff00000) /* |x|>1 */
  45. return (x-x)/(x-x);
  46. if(ix==0x3ff00000)
  47. return x/zero;
  48. if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
  49. SET_HIGH_WORD(x,ix);
  50. if(ix<0x3fe00000) { /* x < 0.5 */
  51. t = x+x;
  52. t = 0.5*log1p(t+t*x/(one-x));
  53. } else
  54. t = 0.5*log1p((x+x)/(one-x));
  55. if(hx>=0) return t; else return -t;
  56. }