Octave-Forge - Extra packages for GNU Octave | |
Home · Packages · Developers · Documentation · FAQ · Bugs · Mailing Lists · Links · Code |
00001 /* 00002 00003 Copyright (C) 2008 VZLU Prague, a.s. 00004 00005 This file is part of Octave. 00006 00007 Octave is free software; you can redistribute it and/or modify it 00008 under the terms of the GNU General Public License as published by the 00009 Free Software Foundation; either version 3 of the License, or (at your 00010 option) any later version. 00011 00012 Octave is distributed in the hope that it will be useful, but WITHOUT 00013 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00014 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00015 for more details. 00016 00017 You should have received a copy of the GNU General Public License 00018 along with Octave; see the file COPYING. If not, see 00019 <http://www.gnu.org/licenses/>. 00020 00021 */ 00022 00023 // author: Jaroslav Hajek <highegg@gmail.com> 00024 00025 #if !defined (octave_xnorm_h) 00026 #define octave_xnorm_h 1 00027 00028 class octave_value; 00029 00030 extern octave_value xnorm (const octave_value& x, const octave_value& p); 00031 extern octave_value xcolnorms (const octave_value& x, const octave_value& p); 00032 extern octave_value xrownorms (const octave_value& x, const octave_value& p); 00033 extern octave_value xfrobnorm (const octave_value& x); 00034 00035 #endif