Octave-Forge - Extra packages for GNU Octave | |
Home · Packages · Developers · Documentation · FAQ · Bugs · Mailing Lists · Links · Code |
00001 // Matrix manipulations. 00002 /* 00003 00004 Copyright (C) 1993, 1994, 1995, 1996, 1997, 2002, 2005, 2007 00005 John W. Eaton 00006 00007 This file is part of Octave. 00008 00009 Octave is free software; you can redistribute it and/or modify it 00010 under the terms of the GNU General Public License as published by the 00011 Free Software Foundation; either version 3 of the License, or (at your 00012 option) any later version. 00013 00014 Octave is distributed in the hope that it will be useful, but WITHOUT 00015 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00016 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00017 for more details. 00018 00019 You should have received a copy of the GNU General Public License 00020 along with Octave; see the file COPYING. If not, see 00021 <http://www.gnu.org/licenses/>. 00022 00023 */ 00024 00025 // Should probably say something here about why these classes are not 00026 // represented by some sort of inheritance tree... 00027 00028 #if !defined (octave_Matrix_h) 00029 #define octave_Matrix_h 1 00030 00031 #include "mx-base.h" 00032 00033 #include "mx-ext.h" 00034 00035 #include "mx-ops.h" 00036 00037 #endif 00038 00039 /* 00040 ;;; Local Variables: *** 00041 ;;; mode: C++ *** 00042 ;;; End: *** 00043 */