12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef KERNELSTDINCLUDE
- #define KERNELSTDINCLUDE
- #include "Kernel.h"
- namespace OBJREC {
- class KernelStd : public Kernel
- {
- protected:
- public:
-
- KernelStd();
-
- virtual ~KernelStd();
- double K (const NICE::Vector & x, const NICE::Vector & y) const;
- };
- }
- #endif
|