source: trunk/lib/statistics/Kernel.h @ 411

Last change on this file since 411 was 411, checked in by Jari Häkkinen, 18 years ago

Move todo items to trac.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 539 bytes
Line 
1// $Id: Kernel.h 411 2005-11-30 16:20:40Z jari $
2
3#ifndef _theplu_statistics_kernel_
4#define _theplu_statistics_kernel_
5
6namespace theplu {
7namespace statistics { 
8namespace regression{
9  ///
10  /// Abstract Base Class for calculating the weights in a more
11  /// general way than classical rectangular windows.
12  ///
13
14  class Kernel
15  {
16   
17    public:
18    ///
19    /// Constructor
20    ///
21    Kernel();
22
23    ///
24    /// Function calculating the weight
25    ///
26    virtual double weight(const double) const=0;
27  };
28
29} // of namespace regression
30} // of namespace statistics
31} // of namespace theplu
32
33#endif
Note: See TracBrowser for help on using the repository browser.