Changeset 99 for trunk/src/KernelFunction.h
- Timestamp:
- Jun 10, 2004, 5:29:46 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/KernelFunction.h
r67 r99 12 12 namespace cpptools { 13 13 14 / **15 Virtual Class calculating one element in the kernel matrix (i.e. the16 scalar product in feature space) from the two corresponding vector in the17 data matrix. So far is only the polynomial kernel implemented.18 */14 /// 15 /// Virtual Class calculating one element in the kernel matrix 16 /// (i.e. the scalar product in feature space) from the two 17 /// corresponding vector in the data matrix. 18 /// 19 19 class KernelFunction 20 20 { 21 21 22 22 public: 23 /** 24 Constructor 25 */ 26 KernelFunction(void) {}; 27 /** 28 Destructor 29 */ 23 /// 24 /// Constructor 25 /// 26 KernelFunction(void) {}; 27 28 /// 29 /// Destructor 30 /// 30 31 virtual ~KernelFunction(void) {}; 31 32
Note: See TracChangeset
for help on using the changeset viewer.