12345678910111213141516171819202122232425262728293031 |
- #ifndef _NICE_OBJREC_TEACHWITHINVERSEKERNELMATRIX
- #define _NICE_OBJREC_TEACHWITHINVERSEKERNELMATRIX
- #include "core/vector/MatrixT.h"
- #include "core/vector/VectorT.h"
- namespace OBJREC {
- class TeachWithInverseKernelMatrix
- {
- public:
-
- virtual void teachInverseKernel ( const NICE::Matrix & inverseKernelMatrix, const NICE::Vector & y ) = 0;
- };
- }
- #endif
|