e_atanhl.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* @(#)e_atanh.c 5.1 93/09/24 */
  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. */
  29. #include <openlibm_math.h>
  30. #include "math_private.h"
  31. static const long double one = 1.0L, huge = 1e4900L;
  32. static const long double zero = 0.0L;
  33. long double
  34. atanhl(long double x)
  35. {
  36. long double t;
  37. u_int32_t jx, ix;
  38. ieee_quad_shape_type u;
  39. u.value = x;
  40. jx = u.parts32.mswhi;
  41. ix = jx & 0x7fffffff;
  42. u.parts32.mswhi = ix;
  43. if (ix >= 0x3fff0000) /* |x| >= 1.0 or infinity or NaN */
  44. {
  45. if (u.value == one)
  46. return x/zero;
  47. else
  48. return (x-x)/(x-x);
  49. }
  50. if(ix<0x3fc60000 && (huge+x)>zero) return x; /* x < 2^-57 */
  51. if(ix<0x3ffe0000) { /* x < 0.5 */
  52. t = u.value+u.value;
  53. t = 0.5*log1pl(t+t*u.value/(one-u.value));
  54. } else
  55. t = 0.5*log1pl((u.value+u.value)/(one-u.value));
  56. if(jx & 0x80000000) return -t; else return t;
  57. }