Mercurial > hg > octave-nkf
annotate liboctave/mx-base.h @ 12283:0664a7ddd944 release-3-4-x
README.MacOS: Spelling corrections.
author | Ben Abbott <bpabbott@mac.com> |
---|---|
date | Fri, 28 Jan 2011 22:27:17 -0500 |
parents | fd0a3ac60b0e |
children | 72c96de7a403 |
rev | line source |
---|---|
460 | 1 /* |
2 | |
11523 | 3 Copyright (C) 1994-2011 John W. Eaton |
460 | 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 | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
460 | 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 | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
460 | 20 |
21 */ | |
22 | |
23 #if !defined (octave_mx_base_h) | |
24 #define octave_mx_base_h 1 | |
25 | |
5785 | 26 // Matrix Type class |
27 | |
28 #include "MatrixType.h" | |
29 | |
1359 | 30 // Matrix classes. |
460 | 31 |
2828 | 32 #include "boolMatrix.h" |
1687 | 33 #include "chMatrix.h" |
460 | 34 #include "dMatrix.h" |
35 #include "CMatrix.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
36 #include "fMatrix.h" |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
37 #include "fCMatrix.h" |
460 | 38 |
1359 | 39 // Column Vector classes. |
460 | 40 |
41 #include "dColVector.h" | |
42 #include "CColVector.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
43 #include "fColVector.h" |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
44 #include "fCColVector.h" |
460 | 45 |
1359 | 46 // Row Vector classes. |
460 | 47 |
48 #include "dRowVector.h" | |
49 #include "CRowVector.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
50 #include "fRowVector.h" |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
51 #include "fCRowVector.h" |
460 | 52 |
1359 | 53 // Diagonal Matrix classes. |
460 | 54 |
55 #include "dDiagMatrix.h" | |
56 #include "CDiagMatrix.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
57 #include "fDiagMatrix.h" |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
58 #include "fCDiagMatrix.h" |
460 | 59 |
8367
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
60 // Permutation matrix class |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
61 #include "PermMatrix.h" |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
62 |
5164 | 63 // Sparse Matrix classes. |
64 | |
65 #include "boolSparse.h" | |
66 #include "dSparse.h" | |
67 #include "CSparse.h" | |
68 | |
4513 | 69 // N-d Array classes. |
4478 | 70 |
4513 | 71 #include "boolNDArray.h" |
72 #include "chNDArray.h" | |
73 #include "dNDArray.h" | |
74 #include "CNDArray.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
75 #include "fNDArray.h" |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
76 #include "fCNDArray.h" |
4478 | 77 |
4902 | 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 | |
460 | 88 #endif |