xnorm.h

Go to the documentation of this file.
00001 /*
00002 
00003 Copyright (C) 2008-2012 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 #include "oct-norm.h"
00029 
00030 class octave_value;
00031 
00032 extern OCTINTERP_API octave_value xnorm (const octave_value& x, const octave_value& p);
00033 extern OCTINTERP_API octave_value xcolnorms (const octave_value& x, const octave_value& p);
00034 extern OCTINTERP_API octave_value xrownorms (const octave_value& x, const octave_value& p);
00035 extern OCTINTERP_API octave_value xfrobnorm (const octave_value& x);
00036 
00037 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines