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, 2003, 2004, 2005, 2006, 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_base_h) 00025 #define octave_mx_base_h 1 00026 00027 // Matrix Type class 00028 00029 #include "MatrixType.h" 00030 00031 // Matrix classes. 00032 00033 #include "boolMatrix.h" 00034 #include "chMatrix.h" 00035 #include "dMatrix.h" 00036 #include "CMatrix.h" 00037 #include "fMatrix.h" 00038 #include "fCMatrix.h" 00039 00040 // Column Vector classes. 00041 00042 #include "dColVector.h" 00043 #include "CColVector.h" 00044 #include "fColVector.h" 00045 #include "fCColVector.h" 00046 00047 // Row Vector classes. 00048 00049 #include "dRowVector.h" 00050 #include "CRowVector.h" 00051 #include "fRowVector.h" 00052 #include "fCRowVector.h" 00053 00054 // Diagonal Matrix classes. 00055 00056 #include "dDiagMatrix.h" 00057 #include "CDiagMatrix.h" 00058 #include "fDiagMatrix.h" 00059 #include "fCDiagMatrix.h" 00060 00061 // Permutation matrix class 00062 #include "PermMatrix.h" 00063 00064 // Sparse Matrix classes. 00065 00066 #include "boolSparse.h" 00067 #include "dSparse.h" 00068 #include "CSparse.h" 00069 00070 // N-d Array classes. 00071 00072 #include "boolNDArray.h" 00073 #include "chNDArray.h" 00074 #include "dNDArray.h" 00075 #include "CNDArray.h" 00076 #include "fNDArray.h" 00077 #include "fCNDArray.h" 00078 00079 #include "int8NDArray.h" 00080 #include "int16NDArray.h" 00081 #include "int32NDArray.h" 00082 #include "int64NDArray.h" 00083 00084 #include "uint8NDArray.h" 00085 #include "uint16NDArray.h" 00086 #include "uint32NDArray.h" 00087 #include "uint64NDArray.h" 00088 00089 #endif 00090 00091 /* 00092 ;;; Local Variables: *** 00093 ;;; mode: C++ *** 00094 ;;; End: *** 00095 */