s_tanh.c 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* @(#)s_tanh.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. #if defined(LIBM_SCCS) && !defined(lint)
  13. static char rcsid[] = "$NetBSD: s_tanh.c,v 1.7 1995/05/10 20:48:22 jtc Exp $";
  14. #endif
  15. /* Tanh(x)
  16. * Return the Hyperbolic Tangent of x
  17. *
  18. * Method :
  19. * x -x
  20. * e - e
  21. * 0. tanh(x) is defined to be -----------
  22. * x -x
  23. * e + e
  24. * 1. reduce x to non-negative by tanh(-x) = -tanh(x).
  25. * 2. 0 <= x <= 2**-55 : tanh(x) := x*(one+x)
  26. * -t
  27. * 2**-55 < x <= 1 : tanh(x) := -----; t = expm1(-2x)
  28. * t + 2
  29. * 2
  30. * 1 <= x <= 22.0 : tanh(x) := 1- ----- ; t=expm1(2x)
  31. * t + 2
  32. * 22.0 < x <= INF : tanh(x) := 1.
  33. *
  34. * Special cases:
  35. * tanh(NaN) is NaN;
  36. * only tanh(0)=0 is exact for finite argument.
  37. */
  38. #include "math.h"
  39. #include "math_private.h"
  40. libm_hidden_proto(expm1)
  41. libm_hidden_proto(fabs)
  42. #ifdef __STDC__
  43. static const double one=1.0, two=2.0, tiny = 1.0e-300;
  44. #else
  45. static double one=1.0, two=2.0, tiny = 1.0e-300;
  46. #endif
  47. libm_hidden_proto(tanh)
  48. #ifdef __STDC__
  49. double tanh(double x)
  50. #else
  51. double tanh(x)
  52. double x;
  53. #endif
  54. {
  55. double t,z;
  56. int32_t jx,ix;
  57. /* High word of |x|. */
  58. GET_HIGH_WORD(jx,x);
  59. ix = jx&0x7fffffff;
  60. /* x is INF or NaN */
  61. if(ix>=0x7ff00000) {
  62. if (jx>=0) return one/x+one; /* tanh(+-inf)=+-1 */
  63. else return one/x-one; /* tanh(NaN) = NaN */
  64. }
  65. /* |x| < 22 */
  66. if (ix < 0x40360000) { /* |x|<22 */
  67. if (ix<0x3c800000) /* |x|<2**-55 */
  68. return x*(one+x); /* tanh(small) = small */
  69. if (ix>=0x3ff00000) { /* |x|>=1 */
  70. t = expm1(two*fabs(x));
  71. z = one - two/(t+two);
  72. } else {
  73. t = expm1(-two*fabs(x));
  74. z= -t/(t+two);
  75. }
  76. /* |x| > 22, return +-1 */
  77. } else {
  78. z = one - tiny; /* raised inexact flag */
  79. }
  80. return (jx>=0)? z: -z;
  81. }
  82. libm_hidden_def(tanh)