460
|
1 // -*- C++ -*- |
|
2 /* |
|
3 |
|
4 Copyright (C) 1992, 1993, 1994 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 |
687
|
27 // Result of a AEP Balance operation. |
460
|
28 |
|
29 #include "dbleAEPBAL.h" |
|
30 #include "CmplxAEPBAL.h" |
|
31 |
687
|
32 // Result of a Determinant calculation. |
460
|
33 |
|
34 #include "dbleDET.h" |
|
35 #include "CmplxDET.h" |
|
36 |
687
|
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. |
460
|
40 |
|
41 #include "dbleGEPBAL.h" |
|
42 |
687
|
43 // Result of a Cholesky Factorization |
460
|
44 |
|
45 #include "dbleCHOL.h" |
|
46 #include "CmplxCHOL.h" |
|
47 |
687
|
48 // Result of a Hessenberg Decomposition |
460
|
49 |
|
50 #include "dbleHESS.h" |
|
51 #include "CmplxHESS.h" |
|
52 |
687
|
53 // Result of a Schur Decomposition |
460
|
54 |
|
55 #include "dbleSCHUR.h" |
|
56 #include "CmplxSCHUR.h" |
|
57 |
687
|
58 // Result of a Singular Value Decomposition. |
460
|
59 |
|
60 #include "dbleSVD.h" |
|
61 #include "CmplxSVD.h" |
|
62 |
687
|
63 // Result of an Eigenvalue computation. |
460
|
64 |
|
65 #include "EIG.h" |
|
66 |
687
|
67 // Result of an LU decomposition. |
460
|
68 |
|
69 #include "dbleLU.h" |
|
70 #include "CmplxLU.h" |
|
71 |
687
|
72 // Result of a QR decomposition. |
460
|
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 */ |