Last change
on this file since 216 was
216,
checked in by Peter, 18 years ago
|
RegressionLocal? added
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
480 bytes
|
Line | |
---|
1 | // $Id: RegressionKernel.h 216 2004-12-29 09:29:54Z peter $ |
---|
2 | |
---|
3 | #ifndef _theplu_statistics_regression_kernel_ |
---|
4 | #define _theplu_statistics_regression_kernel_ |
---|
5 | |
---|
6 | namespace theplu { |
---|
7 | namespace statistics { |
---|
8 | |
---|
9 | /// |
---|
10 | /// Virtual class for calculating the weights in Local Regression |
---|
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.