GNU Octave  9.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
mx-base.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 //
3 // Copyright (C) 1994-2024 The Octave Project Developers
4 //
5 // See the file COPYRIGHT.md in the top-level directory of this
6 // distribution or <https://octave.org/copyright/>.
7 //
8 // This file is part of Octave.
9 //
10 // Octave is free software: you can redistribute it and/or modify it
11 // under the terms of the GNU General Public License as published by
12 // the Free Software Foundation, either version 3 of the License, or
13 // (at your option) any later version.
14 //
15 // Octave is distributed in the hope that it will be useful, but
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 // GNU General Public License for more details.
19 //
20 // You should have received a copy of the GNU General Public License
21 // along with Octave; see the file COPYING. If not, see
22 // <https://www.gnu.org/licenses/>.
23 //
24 ////////////////////////////////////////////////////////////////////////
25 
26 #if ! defined (octave_mx_base_h)
27 #define octave_mx_base_h 1
28 
29 #include "octave-config.h"
30 
31 // Matrix Type class
32 
33 #include "MatrixType.h"
34 
35 // Matrix classes.
36 
37 #include "boolMatrix.h"
38 #include "chMatrix.h"
39 #include "dMatrix.h"
40 #include "CMatrix.h"
41 #include "fMatrix.h"
42 #include "fCMatrix.h"
43 
44 // Column Vector classes.
45 
46 #include "dColVector.h"
47 #include "CColVector.h"
48 #include "fColVector.h"
49 #include "fCColVector.h"
50 
51 // Row Vector classes.
52 
53 #include "dRowVector.h"
54 #include "CRowVector.h"
55 #include "fRowVector.h"
56 #include "fCRowVector.h"
57 
58 // Diagonal Matrix classes.
59 
60 #include "dDiagMatrix.h"
61 #include "CDiagMatrix.h"
62 #include "fDiagMatrix.h"
63 #include "fCDiagMatrix.h"
64 
65 // Permutation matrix class
66 #include "PermMatrix.h"
67 
68 // Sparse Matrix classes.
69 
70 #include "boolSparse.h"
71 #include "dSparse.h"
72 #include "CSparse.h"
73 
74 // N-D Array classes.
75 
76 #include "boolNDArray.h"
77 #include "chNDArray.h"
78 #include "dNDArray.h"
79 #include "CNDArray.h"
80 #include "fNDArray.h"
81 #include "fCNDArray.h"
82 
83 #include "int8NDArray.h"
84 #include "int16NDArray.h"
85 #include "int32NDArray.h"
86 #include "int64NDArray.h"
87 
88 #include "uint8NDArray.h"
89 #include "uint16NDArray.h"
90 #include "uint32NDArray.h"
91 #include "uint64NDArray.h"
92 
93 #endif