00001 /* 00002 00003 Copyright (C) 1994-2012 John W. Eaton 00004 00005 This file is part of Octave. 00006 00007 Octave is free software; you can redistribute it and/or modify it 00008 under the terms of the GNU General Public License as published by the 00009 Free Software Foundation; either version 3 of the License, or (at your 00010 option) any later version. 00011 00012 Octave is distributed in the hope that it will be useful, but WITHOUT 00013 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00014 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00015 for more details. 00016 00017 You should have received a copy of the GNU General Public License 00018 along with Octave; see the file COPYING. If not, see 00019 <http://www.gnu.org/licenses/>. 00020 00021 */ 00022 00023 #if !defined (octave_mx_ext_h) 00024 #define octave_mx_ext_h 1 00025 00026 // Result of a AEP Balance operation. 00027 00028 #include "dbleAEPBAL.h" 00029 #include "CmplxAEPBAL.h" 00030 00031 // Result of a Determinant calculation. 00032 00033 #include "DET.h" 00034 00035 // Result of a Cholesky Factorization 00036 00037 #include "dbleCHOL.h" 00038 #include "CmplxCHOL.h" 00039 #include "floatCHOL.h" 00040 #include "fCmplxCHOL.h" 00041 00042 // Result of a Hessenberg Decomposition 00043 00044 #include "dbleHESS.h" 00045 #include "CmplxHESS.h" 00046 00047 // Result of a Schur Decomposition 00048 00049 #include "dbleSCHUR.h" 00050 #include "CmplxSCHUR.h" 00051 #include "floatSCHUR.h" 00052 #include "fCmplxSCHUR.h" 00053 00054 // Result of a Singular Value Decomposition. 00055 00056 #include "dbleSVD.h" 00057 #include "CmplxSVD.h" 00058 #include "floatSVD.h" 00059 #include "fCmplxSVD.h" 00060 00061 // Result of an Eigenvalue computation. 00062 00063 #include "EIG.h" 00064 00065 // Result of an LU decomposition. 00066 00067 #include "dbleLU.h" 00068 #include "CmplxLU.h" 00069 #include "floatLU.h" 00070 #include "fCmplxLU.h" 00071 00072 // Result of a QR decomposition. 00073 00074 #include "dbleQR.h" 00075 #include "CmplxQR.h" 00076 00077 #include "dbleQRP.h" 00078 #include "CmplxQRP.h" 00079 00080 #endif