GNU Octave  4.2.1
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-2017 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 #include "octave-config.h"
27 
28 // Matrix Type class
29 
30 #include "MatrixType.h"
31 
32 // Matrix classes.
33 
34 #include "boolMatrix.h"
35 #include "chMatrix.h"
36 #include "dMatrix.h"
37 #include "CMatrix.h"
38 #include "fMatrix.h"
39 #include "fCMatrix.h"
40 
41 // Column Vector classes.
42 
43 #include "dColVector.h"
44 #include "CColVector.h"
45 #include "fColVector.h"
46 #include "fCColVector.h"
47 
48 // Row Vector classes.
49 
50 #include "dRowVector.h"
51 #include "CRowVector.h"
52 #include "fRowVector.h"
53 #include "fCRowVector.h"
54 
55 // Diagonal Matrix classes.
56 
57 #include "dDiagMatrix.h"
58 #include "CDiagMatrix.h"
59 #include "fDiagMatrix.h"
60 #include "fCDiagMatrix.h"
61 
62 // Permutation matrix class
63 #include "PermMatrix.h"
64 
65 // Sparse Matrix classes.
66 
67 #include "boolSparse.h"
68 #include "dSparse.h"
69 #include "CSparse.h"
70 
71 // N-D Array classes.
72 
73 #include "boolNDArray.h"
74 #include "chNDArray.h"
75 #include "dNDArray.h"
76 #include "CNDArray.h"
77 #include "fNDArray.h"
78 #include "fCNDArray.h"
79 
80 #include "int8NDArray.h"
81 #include "int16NDArray.h"
82 #include "int32NDArray.h"
83 #include "int64NDArray.h"
84 
85 #include "uint8NDArray.h"
86 #include "uint16NDArray.h"
87 #include "uint32NDArray.h"
88 #include "uint64NDArray.h"
89 
90 #endif