Changeset 216 for trunk/src/RegressionKernel.h
- Timestamp:
- Dec 29, 2004, 10:29:54 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/RegressionKernel.h
r205 r216 8 8 9 9 /// 10 /// 10 /// Virtual class for calculating the weights in Local Regression 11 11 /// 12 12 13 13 class RegressionKernel 14 14 { 15 RegressionKernel(void); 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; 16 26 }; 17 27
Note: See TracChangeset
for help on using the changeset viewer.