Mercurial > hg > octave-nkf
annotate liboctave/mx-base.h @ 9838:55219e65c7cd
fix typo
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Thu, 19 Nov 2009 12:23:52 +0100 |
parents | eb63fbe60fab |
children | 4c0cdbe0acca |
rev | line source |
---|---|
460 | 1 /* |
2 | |
8920 | 3 Copyright (C) 1994, 1995, 1996, 1997, 2003, 2004, 2005, 2006, 2007, 2008 |
7017 | 4 John W. Eaton |
460 | 5 |
6 This file is part of Octave. | |
7 | |
8 Octave is free software; you can redistribute it and/or modify it | |
9 under the terms of the GNU General Public License as published by the | |
7016 | 10 Free Software Foundation; either version 3 of the License, or (at your |
11 option) any later version. | |
460 | 12 |
13 Octave is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
7016 | 19 along with Octave; see the file COPYING. If not, see |
20 <http://www.gnu.org/licenses/>. | |
460 | 21 |
22 */ | |
23 | |
24 #if !defined (octave_mx_base_h) | |
25 #define octave_mx_base_h 1 | |
26 | |
5785 | 27 // Matrix Type class |
28 | |
29 #include "MatrixType.h" | |
30 | |
1359 | 31 // Matrix classes. |
460 | 32 |
2828 | 33 #include "boolMatrix.h" |
1687 | 34 #include "chMatrix.h" |
460 | 35 #include "dMatrix.h" |
36 #include "CMatrix.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
37 #include "fMatrix.h" |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
38 #include "fCMatrix.h" |
460 | 39 |
1359 | 40 // Column Vector classes. |
460 | 41 |
42 #include "dColVector.h" | |
43 #include "CColVector.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
44 #include "fColVector.h" |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
45 #include "fCColVector.h" |
460 | 46 |
1359 | 47 // Row Vector classes. |
460 | 48 |
49 #include "dRowVector.h" | |
50 #include "CRowVector.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
51 #include "fRowVector.h" |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
52 #include "fCRowVector.h" |
460 | 53 |
1359 | 54 // Diagonal Matrix classes. |
460 | 55 |
56 #include "dDiagMatrix.h" | |
57 #include "CDiagMatrix.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
58 #include "fDiagMatrix.h" |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
59 #include "fCDiagMatrix.h" |
460 | 60 |
8367
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
61 // Permutation matrix class |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
62 #include "PermMatrix.h" |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
63 |
5164 | 64 // Sparse Matrix classes. |
65 | |
66 #include "boolSparse.h" | |
67 #include "dSparse.h" | |
68 #include "CSparse.h" | |
69 | |
4513 | 70 // N-d Array classes. |
4478 | 71 |
4513 | 72 #include "boolNDArray.h" |
73 #include "chNDArray.h" | |
74 #include "dNDArray.h" | |
75 #include "CNDArray.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
76 #include "fNDArray.h" |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
77 #include "fCNDArray.h" |
4478 | 78 |
4902 | 79 #include "int8NDArray.h" |
80 #include "int16NDArray.h" | |
81 #include "int32NDArray.h" | |
82 #include "int64NDArray.h" | |
83 | |
84 #include "uint8NDArray.h" | |
85 #include "uint16NDArray.h" | |
86 #include "uint32NDArray.h" | |
87 #include "uint64NDArray.h" | |
88 | |
460 | 89 #endif |
90 | |
91 /* | |
92 ;;; Local Variables: *** | |
93 ;;; mode: C++ *** | |
94 ;;; End: *** | |
95 */ |