1993
|
1 // Matrix manipulations. |
3
|
2 /* |
|
3 |
7017
|
4 Copyright (C) 1993, 1994, 1995, 1996, 1997, 2002, 2005, 2007 |
|
5 John W. Eaton |
3
|
6 |
|
7 This file is part of Octave. |
|
8 |
|
9 Octave is free software; you can redistribute it and/or modify it |
|
10 under the terms of the GNU General Public License as published by the |
7016
|
11 Free Software Foundation; either version 3 of the License, or (at your |
|
12 option) any later version. |
3
|
13 |
|
14 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
17 for more details. |
|
18 |
|
19 You should have received a copy of the GNU General Public License |
7016
|
20 along with Octave; see the file COPYING. If not, see |
|
21 <http://www.gnu.org/licenses/>. |
3
|
22 |
|
23 */ |
|
24 |
1359
|
25 // Should probably say something here about why these classes are not |
|
26 // represented by some sort of inheritance tree... |
3
|
27 |
382
|
28 #if !defined (octave_Matrix_h) |
|
29 #define octave_Matrix_h 1 |
|
30 |
461
|
31 #include "mx-base.h" |
3
|
32 |
461
|
33 #include "mx-ext.h" |
382
|
34 |
4210
|
35 #include "mx-ops.h" |
|
36 |
3
|
37 #endif |