GNU Octave  3.8.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-base.h
Go to the documentation of this file.
1 /*
2 
3 Copyright (C) 1994-2013 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_base_h)
24 #define octave_mx_base_h 1
25 
26 // Matrix Type class
27 
28 #include "MatrixType.h"
29 
30 // Matrix classes.
31 
32 #include "boolMatrix.h"
33 #include "chMatrix.h"
34 #include "dMatrix.h"
35 #include "CMatrix.h"
36 #include "fMatrix.h"
37 #include "fCMatrix.h"
38 
39 // Column Vector classes.
40 
41 #include "dColVector.h"
42 #include "CColVector.h"
43 #include "fColVector.h"
44 #include "fCColVector.h"
45 
46 // Row Vector classes.
47 
48 #include "dRowVector.h"
49 #include "CRowVector.h"
50 #include "fRowVector.h"
51 #include "fCRowVector.h"
52 
53 // Diagonal Matrix classes.
54 
55 #include "dDiagMatrix.h"
56 #include "CDiagMatrix.h"
57 #include "fDiagMatrix.h"
58 #include "fCDiagMatrix.h"
59 
60 // Permutation matrix class
61 #include "PermMatrix.h"
62 
63 // Sparse Matrix classes.
64 
65 #include "boolSparse.h"
66 #include "dSparse.h"
67 #include "CSparse.h"
68 
69 // N-d Array classes.
70 
71 #include "boolNDArray.h"
72 #include "chNDArray.h"
73 #include "dNDArray.h"
74 #include "CNDArray.h"
75 #include "fNDArray.h"
76 #include "fCNDArray.h"
77 
78 #include "int8NDArray.h"
79 #include "int16NDArray.h"
80 #include "int32NDArray.h"
81 #include "int64NDArray.h"
82 
83 #include "uint8NDArray.h"
84 #include "uint16NDArray.h"
85 #include "uint32NDArray.h"
86 #include "uint64NDArray.h"
87 
88 #endif