home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / liboctave / CmplxQR.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  2KB  |  90 lines

  1. //                                  -*- C++ -*-
  2. /*
  3.  
  4. Copyright (C) 1992, 1993, 1994, 1995 John W. Eaton
  5.  
  6. This file is part of Octave.
  7.  
  8. Octave is free software; you can redistribute it and/or modify it
  9. under the terms of the GNU General Public License as published by the
  10. Free Software Foundation; either version 2, or (at your option) any
  11. later version.
  12.  
  13. Octave is distributed in the hope that it will be useful, but WITHOUT
  14. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16. for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with Octave; see the file COPYING.  If not, write to the Free
  20. Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. */
  23.  
  24. #if !defined (octave_ComplexQR_h)
  25. #define octave_ComplexQR_h 1
  26.  
  27. class ostream;
  28.  
  29. #include "CMatrix.h"
  30. #include "dbleQR.h"
  31.  
  32. extern "C++" {
  33.  
  34. class ComplexQR
  35. {
  36. public:
  37.  
  38.   ComplexQR (void) {}
  39.  
  40.   ComplexQR (const ComplexMatrix& A, QR::type qr_type = QR::std);
  41.  
  42.   ComplexQR (const ComplexQR& a);
  43.  
  44.   ComplexQR& operator = (const ComplexQR& a);
  45.  
  46.   ComplexMatrix Q (void) const;
  47.   ComplexMatrix R (void) const;
  48.  
  49.   friend ostream&  operator << (ostream& os, const ComplexQR& a);
  50.  
  51. protected:
  52.  
  53.   ComplexMatrix q;
  54.   ComplexMatrix r;
  55. };
  56.  
  57. inline ComplexQR::ComplexQR (const ComplexQR& a)
  58. {
  59.   q = a.q;
  60.   r = a.r;
  61. }
  62.  
  63. inline ComplexQR& ComplexQR::operator = (const ComplexQR& a)
  64. {
  65.   q = a.q;
  66.   r = a.r;
  67.   return *this;
  68. }
  69.  
  70. inline ComplexMatrix ComplexQR::Q (void) const
  71. {
  72.   return q;
  73. }
  74.  
  75. inline ComplexMatrix ComplexQR::R (void) const
  76. {
  77.   return r;
  78. }
  79.  
  80. } // extern "C++"
  81.  
  82. #endif
  83.  
  84. /*
  85. ;;; Local Variables: ***
  86. ;;; mode: C++ ***
  87. ;;; page-delimiter: "^/\\*" ***
  88. ;;; End: ***
  89. */
  90.