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