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