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 / CmplxHESS.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  2KB  |  102 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_ComplexHESS_h)
  25. #define octave_ComplexHESS_h 1
  26.  
  27. class ostream;
  28.  
  29. #include "CMatrix.h"
  30.  
  31. extern "C++" {
  32.  
  33. class ComplexHESS
  34. {
  35. friend class ComplexMatrix;
  36.  
  37. public:
  38.  
  39.   ComplexHESS (void) {}
  40.   ComplexHESS (const ComplexMatrix& a);
  41.   ComplexHESS (const ComplexMatrix& a, int& info);
  42.   ComplexHESS (const ComplexHESS& a);
  43.   ComplexHESS& operator = (const ComplexHESS& a);
  44.   ComplexMatrix hess_matrix (void) const;
  45.   ComplexMatrix unitary_hess_matrix (void) const;
  46.  
  47.   friend ostream& operator << (ostream& os, const ComplexHESS& a);
  48.  
  49. private:
  50.  
  51.   int init (const ComplexMatrix& a);
  52.  
  53.   ComplexMatrix hess_mat;
  54.   ComplexMatrix unitary_hess_mat;
  55. };
  56.  
  57. inline ComplexHESS::ComplexHESS (const ComplexMatrix& a)
  58. {
  59.   init (a);
  60. }
  61.  
  62. inline ComplexHESS::ComplexHESS (const ComplexMatrix& a, int& info)
  63. {
  64.   info = init (a);
  65. }
  66.  
  67. inline ComplexHESS::ComplexHESS (const ComplexHESS& a)
  68. {
  69.   hess_mat = a.hess_mat;
  70.   unitary_hess_mat = a.unitary_hess_mat;
  71. }
  72.  
  73. inline ComplexHESS&
  74. ComplexHESS::operator = (const ComplexHESS& a)
  75. {
  76.   hess_mat = a.hess_mat;
  77.   unitary_hess_mat = a.unitary_hess_mat;
  78.  
  79.   return *this;
  80. }
  81.  
  82. inline ComplexMatrix ComplexHESS::hess_matrix (void) const
  83. {
  84.   return hess_mat;
  85. }
  86.  
  87. inline ComplexMatrix ComplexHESS::unitary_hess_matrix (void) const
  88. {
  89.   return unitary_hess_mat;
  90. }
  91.  
  92. } // extern "C++"
  93.  
  94. #endif
  95.  
  96. /*
  97. ;;; Local Variables: ***
  98. ;;; mode: C++ ***
  99. ;;; page-delimiter: "^/\\*" ***
  100. ;;; End: ***
  101. */
  102.