complext.cc
上传用户:sichengcw
上传日期:2009-02-17
资源大小:202k
文件大小:7k
源码类别:

STL

开发平台:

Visual C++

  1. // Member templates for the -*- C++ -*- complex number classes.
  2. // Copyright (C) 1994 Free Software Foundation
  3. // This file is part of the GNU ANSI C++ Library.  This library is free
  4. // software; you can redistribute it and/or modify it under the
  5. // terms of the GNU General Public License as published by the
  6. // Free Software Foundation; either version 2, or (at your option)
  7. // any later version.
  8. // This library is distributed in the hope that it will be useful,
  9. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. // GNU General Public License for more details.
  12. // You should have received a copy of the GNU General Public License
  13. // along with this library; see the file COPYING.  If not, write to the Free
  14. // Software Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  15. // As a special exception, if you link this library with files
  16. // compiled with a GNU compiler to produce an executable, this does not cause
  17. // the resulting executable to be covered by the GNU General Public License.
  18. // This exception does not however invalidate any other reasons why
  19. // the executable file might be covered by the GNU General Public License.
  20. // Written by Jason Merrill based upon the specification in the 27 May 1994
  21. // C++ working paper, ANSI document X3J16/94-0098.
  22. #include <complex>
  23. extern "C++" {
  24. template <class FLOAT> complex<FLOAT>
  25. cos (const complex<FLOAT>& x)
  26. {
  27.   return complex<FLOAT> (cos (real (x)) * cosh (imag (x)),
  28.    - sin (real (x)) * sinh (imag (x)));
  29. }
  30. template <class FLOAT> complex<FLOAT>
  31. cosh (const complex<FLOAT>& x)
  32. {
  33.   return complex<FLOAT> (cosh (real (x)) * cos (imag (x)),
  34.    sinh (real (x)) * sin (imag (x)));
  35. }
  36. template <class FLOAT> complex<FLOAT>
  37. exp (const complex<FLOAT>& x)
  38. {
  39.   return polar (FLOAT (exp (real (x))), imag (x));
  40. }
  41. template <class FLOAT> complex<FLOAT>
  42. log (const complex<FLOAT>& x)
  43. {
  44.   return complex<FLOAT> (log (abs (x)), arg (x));
  45. }
  46. template <class FLOAT> complex<FLOAT>
  47. pow (const complex<FLOAT>& x, const complex<FLOAT>& y)
  48. {
  49.   FLOAT logr = log (abs (x));
  50.   FLOAT t = arg (x);
  51.   return polar (FLOAT (exp (logr * real (y) - imag (y) * t)),
  52. FLOAT (imag (y) * logr + real (y) * t));
  53. }
  54. template <class FLOAT> complex<FLOAT>
  55. pow (const complex<FLOAT>& x, FLOAT y)
  56. {
  57.   return exp (FLOAT (y) * log (x));
  58. }
  59. template <class FLOAT> complex<FLOAT>
  60. pow (FLOAT x, const complex<FLOAT>& y)
  61. {
  62.   return exp (y * FLOAT (log (x)));
  63. }
  64. template <class FLOAT> complex<FLOAT>
  65. sin (const complex<FLOAT>& x)
  66. {
  67.   return complex<FLOAT> (sin (real (x)) * cosh (imag (x)),
  68.    cos (real (x)) * sinh (imag (x)));
  69. }
  70. template <class FLOAT> complex<FLOAT>
  71. sinh (const complex<FLOAT>& x)
  72. {
  73.   return complex<FLOAT> (sinh (real (x)) * cos (imag (x)),
  74.    cosh (real (x)) * sin (imag (x)));
  75. }
  76. #include <iostream.h>
  77. template <class FLOAT> istream&
  78. operator >> (istream& is, complex<FLOAT>& x)
  79. {
  80.   FLOAT re, im = 0;
  81.   char ch = 0;
  82.   if (is.ipfx0 ())
  83.     {
  84.       if (is.peek () == '(')
  85. is >> ch;
  86.       is >> re;
  87.       if (ch == '(')
  88. {
  89.   is >> ch;
  90.   if (ch == ',')
  91.     is >> im >> ch;
  92. }
  93.     }
  94.   is.isfx ();
  95.   if (ch != 0 && ch != ')')
  96.     is.setstate (ios::failbit);
  97.   else if (is.good ())
  98.     x = complex<FLOAT> (re, im);
  99.   return is;
  100. }
  101. template <class FLOAT> ostream&
  102. operator << (ostream& os, const complex<FLOAT>& x)
  103. {
  104.   return os << '(' << real (x) << ',' << imag (x) << ')';
  105. }
  106. // The code below is adapted from f2c's libF77, and is subject to this
  107. // copyright:
  108. /****************************************************************
  109. Copyright 1990, 1991, 1992, 1993 by AT&T Bell Laboratories and Bellcore.
  110. Permission to use, copy, modify, and distribute this software
  111. and its documentation for any purpose and without fee is hereby
  112. granted, provided that the above copyright notice appear in all
  113. copies and that both that the copyright notice and this
  114. permission notice and warranty disclaimer appear in supporting
  115. documentation, and that the names of AT&T Bell Laboratories or
  116. Bellcore or any of their entities not be used in advertising or
  117. publicity pertaining to distribution of the software without
  118. specific, written prior permission.
  119. AT&T and Bellcore disclaim all warranties with regard to this
  120. software, including all implied warranties of merchantability
  121. and fitness.  In no event shall AT&T or Bellcore be liable for
  122. any special, indirect or consequential damages or any damages
  123. whatsoever resulting from loss of use, data or profits, whether
  124. in an action of contract, negligence or other tortious action,
  125. arising out of or in connection with the use or performance of
  126. this software.
  127. ****************************************************************/
  128. template <class FLOAT> complex<FLOAT>&
  129. __doadv (complex<FLOAT>* ths, const complex<FLOAT>& y)
  130. {
  131.   FLOAT ar = abs (y.re);
  132.   FLOAT ai = abs (y.im);
  133.   FLOAT nr, ni;
  134.   FLOAT t, d;
  135.   if (ar <= ai)
  136.     {
  137.       t = y.re / y.im;
  138.       d = y.im * (1 + t*t);
  139.       nr = (ths->re * t + ths->im) / d;
  140.       ni = (ths->im * t - ths->re) / d;
  141.     }
  142.   else
  143.     {
  144.       t = y.im / y.re;
  145.       d = y.re * (1 + t*t);
  146.       nr = (ths->re + ths->im * t) / d;
  147.       ni = (ths->im - ths->re * t) / d;
  148.     }
  149.   ths->re = nr;
  150.   ths->im = ni;
  151.   return *ths;
  152. }
  153. template <class FLOAT> complex<FLOAT>
  154. operator / (const complex<FLOAT>& x, const complex<FLOAT>& y)
  155. {
  156.   FLOAT ar = abs (real (y));
  157.   FLOAT ai = abs (imag (y));
  158.   FLOAT nr, ni;
  159.   FLOAT t, d;
  160.   if (ar <= ai)
  161.     {
  162.       t = real (y) / imag (y);
  163.       d = imag (y) * (1 + t*t);
  164.       nr = (real (x) * t + imag (x)) / d;
  165.       ni = (imag (x) * t - real (x)) / d;
  166.     }
  167.   else
  168.     {
  169.       t = imag (y) / real (y);
  170.       d = real (y) * (1 + t*t);
  171.       nr = (real (x) + imag (x) * t) / d;
  172.       ni = (imag (x) - real (x) * t) / d;
  173.     }
  174.   return complex<FLOAT> (nr, ni);
  175. }
  176. template <class FLOAT> complex<FLOAT>
  177. operator / (FLOAT x, const complex<FLOAT>& y)
  178. {
  179.   FLOAT ar = abs (real (y));
  180.   FLOAT ai = abs (imag (y));
  181.   FLOAT nr, ni;
  182.   FLOAT t, d;
  183.   if (ar <= ai)
  184.     {
  185.       t = real (y) / imag (y);
  186.       d = imag (y) * (1 + t*t);
  187.       nr = x * t / d;
  188.       ni = -x / d;
  189.     }
  190.   else
  191.     {
  192.       t = imag (y) / real (y);
  193.       d = real (y) * (1 + t*t);
  194.       nr = x / d;
  195.       ni = -x * t / d;
  196.     }
  197.   return complex<FLOAT> (nr, ni);
  198. }
  199. template <class FLOAT> complex<FLOAT>
  200. pow (const complex<FLOAT>& xin, int y)
  201. {
  202.   if (y == 0)
  203.     return complex<FLOAT> (1.0);
  204.   complex<FLOAT> r (1.0);
  205.   complex<FLOAT> x (xin);
  206.   if (y < 0)
  207.     {
  208.       y = -y;
  209.       x = 1/x;
  210.     }
  211.   for (;;)
  212.     {
  213.       if (y & 1)
  214. r *= x;
  215.       if (y >>= 1)
  216. x *= x;
  217.       else
  218. return r;
  219.     }
  220. }
  221. template <class FLOAT> complex<FLOAT>
  222. sqrt (const complex<FLOAT>& x)
  223. {
  224.   FLOAT r = abs (x);
  225.   FLOAT nr, ni;
  226.   if (r == 0.0)
  227.     nr = ni = r;
  228.   else if (real (x) > 0)
  229.     {
  230.       nr = sqrt (0.5 * (r + real (x)));
  231.       ni = imag (x) / nr / 2;
  232.     }
  233.   else
  234.     {
  235.       ni = sqrt (0.5 * (r - real (x)));
  236.       if (imag (x) < 0)
  237. ni = - ni;
  238.       nr = imag (x) / ni / 2;
  239.     }
  240.   return complex<FLOAT> (nr, ni); 
  241. }
  242. } // extern "C++"