source: trunk/yat/regression/KernelBox.h @ 1437

Last change on this file since 1437 was 1437, checked in by Peter, 15 years ago

merge patch release 0.4.2 to trunk. Delta 0.4.2-0.4.1

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 KB
Line 
1#ifndef _theplu_yat_regression_kernelbox_
2#define _theplu_yat_regression_kernelbox_
3
4// $Id: KernelBox.h 1437 2008-08-25 17:55:00Z peter $
5
6/*
7  Copyright (C) 2004 Peter Johansson
8  Copyright (C) 2005 Jari Häkkinen, Peter Johansson
9  Copyright (C) 2006 Jari Häkkinen
10  Copyright (C) 2007 Jari Häkkinen, Peter Johansson
11
12  This file is part of the yat library, http://dev.thep.lu.se/yat
13
14  The yat library is free software; you can redistribute it and/or
15  modify it under the terms of the GNU General Public License as
16  published by the Free Software Foundation; either version 2 of the
17  License, or (at your option) any later version.
18
19  The yat library is distributed in the hope that it will be useful,
20  but WITHOUT ANY WARRANTY; without even the implied warranty of
21  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22  General Public License for more details.
23
24  You should have received a copy of the GNU General Public License
25  along with this program; if not, write to the Free Software
26  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
27  02111-1307, USA.
28*/
29
30#include "Kernel.h"
31
32namespace theplu {
33namespace yat {
34namespace regression {
35
36  ///
37  /// @brief Class for KernelBox a.k.a. rectangular window.
38  ///
39  class KernelBox : public Kernel
40  {
41   
42  public:
43    ///
44    /// Constructor
45    ///
46    KernelBox(void);
47
48    ///
49    /// Function calculating kernel value as \f$ w(x)=1\f$ if \f$|x|\le 1
50    /// \f$, \f$ w(x)=0 \f$ otherwise.
51    ///
52    double operator()(const double) const;
53 
54  private:
55  };
56
57}}} // of namespaces regression, yat, and theplu
58
59#endif
Note: See TracBrowser for help on using the repository browser.