460
|
1 /* |
|
2 |
7017
|
3 Copyright (C) 1994, 1995, 1996, 1997, 1998, 2002, 2005, 2007 |
|
4 John W. Eaton |
460
|
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 |
7016
|
10 Free Software Foundation; either version 3 of the License, or (at your |
|
11 option) any later version. |
460
|
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 |
7016
|
19 along with Octave; see the file COPYING. If not, see |
|
20 <http://www.gnu.org/licenses/>. |
460
|
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 Cholesky Factorization |
460
|
38 |
|
39 #include "dbleCHOL.h" |
|
40 #include "CmplxCHOL.h" |
|
41 |
687
|
42 // Result of a Hessenberg Decomposition |
460
|
43 |
|
44 #include "dbleHESS.h" |
|
45 #include "CmplxHESS.h" |
|
46 |
687
|
47 // Result of a Schur Decomposition |
460
|
48 |
|
49 #include "dbleSCHUR.h" |
|
50 #include "CmplxSCHUR.h" |
|
51 |
687
|
52 // Result of a Singular Value Decomposition. |
460
|
53 |
|
54 #include "dbleSVD.h" |
|
55 #include "CmplxSVD.h" |
|
56 |
687
|
57 // Result of an Eigenvalue computation. |
460
|
58 |
|
59 #include "EIG.h" |
|
60 |
687
|
61 // Result of an LU decomposition. |
460
|
62 |
|
63 #include "dbleLU.h" |
|
64 #include "CmplxLU.h" |
|
65 |
687
|
66 // Result of a QR decomposition. |
460
|
67 |
|
68 #include "dbleQR.h" |
|
69 #include "CmplxQR.h" |
|
70 |
4210
|
71 #include "dbleQRP.h" |
|
72 #include "CmplxQRP.h" |
|
73 |
460
|
74 #endif |
|
75 |
|
76 /* |
|
77 ;;; Local Variables: *** |
|
78 ;;; mode: C++ *** |
|
79 ;;; End: *** |
|
80 */ |