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