atanhl.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* origin: OpenBSD /usr/src/lib/libm/src/ld80/e_atanh.c */
  2. /*
  3. * ====================================================
  4. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  5. *
  6. * Developed at SunPro, 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. /* atanhl(x)
  13. * Method :
  14. * 1.Reduced x to positive by atanh(-x) = -atanh(x)
  15. * 2.For x>=0.5
  16. * 1 2x x
  17. * atanhl(x) = --- * log(1 + -------) = 0.5 * log1p(2 * --------)
  18. * 2 1 - x 1 - x
  19. *
  20. * For x<0.5
  21. * atanhl(x) = 0.5*log1pl(2x+2x*x/(1-x))
  22. *
  23. * Special cases:
  24. * atanhl(x) is NaN if |x| > 1 with signal;
  25. * atanhl(NaN) is that NaN with no signal;
  26. * atanhl(+-1) is +-INF with signal.
  27. */
  28. #include "libm.h"
  29. #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
  30. long double atanhl(long double x)
  31. {
  32. return atanh(x);
  33. }
  34. #elif LDBL_MANT_DIG == 64 && LDBL_MAX_EXP == 16384
  35. static const long double huge = 1e4900L;
  36. long double atanhl(long double x)
  37. {
  38. long double t;
  39. int32_t ix;
  40. uint32_t se,i0,i1;
  41. GET_LDOUBLE_WORDS(se, i0, i1, x);
  42. ix = se & 0x7fff;
  43. if ((ix+((((i0&0x7fffffff)|i1)|(-((i0&0x7fffffff)|i1)))>>31)) > 0x3fff)
  44. /* |x| > 1 */
  45. return (x-x)/(x-x);
  46. if (ix == 0x3fff)
  47. return x/0.0;
  48. if (ix < 0x3fe3 && huge+x > 0.0) /* x < 2**-28 */
  49. return x;
  50. SET_LDOUBLE_EXP(x, ix);
  51. if (ix < 0x3ffe) { /* x < 0.5 */
  52. t = x + x;
  53. t = 0.5*log1pl(t + t*x/(1.0 - x));
  54. } else
  55. t = 0.5*log1pl((x + x)/(1.0 - x));
  56. if (se <= 0x7fff)
  57. return t;
  58. return -t;
  59. }
  60. #endif