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

VxWorks

开发平台:

C/C++

  1. /* tan.c - math routines */
  2. /* Copyright 1992-1993 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01f,05feb93,jdi  doc changes based on kdl review.
  7. 01e,02dec92,jdi  doc tweaks.
  8. 01d,28oct92,jdi  documentation cleanup.
  9. 01c,21sep92,smb  changed function header for mg.
  10. 01b,20sep92,smb  documentation additions
  11. 01a,08jul92,smb  documentation.
  12. */
  13. /*
  14. DESCRIPTION
  15. * Copyright (c) 1987 Regents of the University of California.
  16. * All rights reserved.
  17. *
  18. * Redistribution and use in source and binary forms are permitted
  19. * provided that the above copyright notice and this paragraph are
  20. * duplicated in all such forms and that any documentation,
  21. * advertising materials, and other materials related to such
  22. * distribution and use acknowledge that the software was developed
  23. * by the University of California, Berkeley.  The name of the
  24. * University may not be used to endorse or promote products derived
  25. * from this software without specific prior written permission.
  26. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  27. * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  28. * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  29. *
  30. * All recipients should regard themselves as participants in an ongoing
  31. * research project and hence should feel obligated to report their
  32. * experiences (good or bad) with these elementary function codes, using
  33. * the sendbug(8) program, to the authors.
  34. *
  35. SEE ALSO: American National Standard X3.159-1989
  36. NOMANUAL
  37. */
  38. #include "vxWorks.h"
  39. #include "math.h"
  40. #include "private/trigP.h"
  41. /*******************************************************************************
  42. *
  43. * tan - compute a tangent (ANSI)
  44. *
  45. * This routine computes the tangent of <x> in double precision.
  46. * The angle <x> is expressed in radians.
  47. * INCLUDE FILES: math.h
  48. *
  49. * RETURNS: The double-precision tangent of <x>.
  50. *
  51. * SEE ALSO: mathALib
  52. */
  53. double tan
  54.     (
  55.     double x /* angle in radians */
  56.     )
  57.     {
  58. double a,z,ss,cc,c;
  59. int k;
  60. if(!finite(x)) /* tan(NaN) and tan(INF) must be NaN */
  61. return x-x;
  62. x = drem(x,PI); /* reduce x into [-PI/2, PI/2] */
  63. a = copysign(x,one); /* ... = abs(x) */
  64. if (a >= PIo4) {
  65. k = 1;
  66. x = copysign(PIo2-a,x);
  67. }
  68. else {
  69. k = 0;
  70. if (a < small) {
  71. big+a;
  72. return x;
  73. }
  74. }
  75. z = x*x;
  76. cc = cos__C(z);
  77. ss = sin__S(z);
  78. z *= half; /* Next get c = cos(x) accurately */
  79. c = (z >= thresh ? half-((z-half)-cc) : one-(z-cc));
  80. if (k == 0)
  81. return x+(x*(z-(cc-ss)))/c; /* ... sin/cos */
  82. #ifdef national
  83. else if (x == zero)
  84. return copysign(fmax,x); /* no inf on 32k */
  85. #endif /* national */
  86. else
  87. return c/(x+x*ss); /* ... cos/sin */
  88.     }