source: trunk/src/RegressionKernel.h @ 281

Last change on this file since 281 was 281, checked in by Peter, 18 years ago

added TriCube? kernel for Regression

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 479 bytes
Line 
1// $Id: RegressionKernel.h 281 2005-04-20 16:45:02Z peter $
2
3#ifndef _theplu_statistics_regression_kernel_
4#define _theplu_statistics_regression_kernel_
5
6namespace theplu {
7namespace statistics { 
8
9  ///
10  /// Virtual class for calculating the weights in RegressionLocal
11  ///
12
13  class RegressionKernel
14  {
15   
16    public:
17    ///
18    /// Constructor
19    ///
20    RegressionKernel();
21
22    ///
23    /// Function calculating the weight
24    ///
25    virtual double weight(const double) const=0;
26  };
27
28}}  // of namespace statistics and namespace theplu
29
30#endif
Note: See TracBrowser for help on using the repository browser.