GNU Octave  4.0.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
mx-ext.h
Go to the documentation of this file.
1 /*
2 
3 Copyright (C) 1994-2015 John W. Eaton
4 
5 This file is part of Octave.
6 
7 Octave is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3 of the License, or (at your
10 option) any later version.
11 
12 Octave is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16 
17 You should have received a copy of the GNU General Public License
18 along with Octave; see the file COPYING. If not, see
19 <http://www.gnu.org/licenses/>.
20 
21 */
22 
23 #if !defined (octave_mx_ext_h)
24 #define octave_mx_ext_h 1
25 
26 // Result of a AEP Balance operation.
27 
28 #include "dbleAEPBAL.h"
29 #include "CmplxAEPBAL.h"
30 
31 // Result of a Determinant calculation.
32 
33 #include "DET.h"
34 
35 // Result of a Cholesky Factorization
36 
37 #include "dbleCHOL.h"
38 #include "CmplxCHOL.h"
39 #include "floatCHOL.h"
40 #include "fCmplxCHOL.h"
41 
42 // Result of a Hessenberg Decomposition
43 
44 #include "dbleHESS.h"
45 #include "CmplxHESS.h"
46 
47 // Result of a Schur Decomposition
48 
49 #include "dbleSCHUR.h"
50 #include "CmplxSCHUR.h"
51 #include "floatSCHUR.h"
52 #include "fCmplxSCHUR.h"
53 
54 // Result of a Singular Value Decomposition.
55 
56 #include "dbleSVD.h"
57 #include "CmplxSVD.h"
58 #include "floatSVD.h"
59 #include "fCmplxSVD.h"
60 
61 // Result of an Eigenvalue computation.
62 
63 #include "EIG.h"
64 
65 // Result of an LU decomposition.
66 
67 #include "dbleLU.h"
68 #include "CmplxLU.h"
69 #include "floatLU.h"
70 #include "fCmplxLU.h"
71 
72 // Result of a QR decomposition.
73 
74 #include "dbleQR.h"
75 #include "CmplxQR.h"
76 
77 #include "dbleQRP.h"
78 #include "CmplxQRP.h"
79 
80 #endif