home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-bin.lha / include / octave / mx-ext.h < prev    next >
C/C++ Source or Header  |  1996-10-12  |  2KB  |  85 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_mx_ext_h)
  25. #define octave_mx_ext_h 1
  26.  
  27. // Result of a AEP Balance operation.
  28.  
  29. #include "dbleAEPBAL.h"
  30. #include "CmplxAEPBAL.h"
  31.  
  32. // Result of a Determinant calculation.
  33.  
  34. #include "dbleDET.h"
  35. #include "CmplxDET.h"
  36.  
  37. // Result of a GEP Balance operation
  38. // Note: currenlty only do balancing on real data.  Complex balancing
  39. // done on magnitudes of complex data.
  40.  
  41. #include "dbleGEPBAL.h"
  42.  
  43. // Result of a Cholesky Factorization
  44.  
  45. #include "dbleCHOL.h"
  46. #include "CmplxCHOL.h"
  47.  
  48. // Result of a Hessenberg Decomposition
  49.  
  50. #include "dbleHESS.h"
  51. #include "CmplxHESS.h"
  52.  
  53. // Result of a Schur Decomposition
  54.  
  55. #include "dbleSCHUR.h"
  56. #include "CmplxSCHUR.h"
  57.  
  58. // Result of a Singular Value Decomposition.
  59.  
  60. #include "dbleSVD.h"
  61. #include "CmplxSVD.h"
  62.  
  63. // Result of an Eigenvalue computation.
  64.  
  65. #include "EIG.h"
  66.  
  67. // Result of an LU decomposition.
  68.  
  69. #include "dbleLU.h"
  70. #include "CmplxLU.h"
  71.  
  72. // Result of a QR decomposition.
  73.  
  74. #include "dbleQR.h"
  75. #include "CmplxQR.h"
  76.  
  77. #endif
  78.  
  79. /*
  80. ;;; Local Variables: ***
  81. ;;; mode: C++ ***
  82. ;;; page-delimiter: "^/\\*" ***
  83. ;;; End: ***
  84. */
  85.