123456789101112131415161718192021 |
- /**
- * @file ImplicitKernelMatrix.cpp
- * @brief An implicit kernel matrix, allowing for fast multiplication with arbitrary vectors (Implementation - abstract)
- * @author Erik Rodner, Alexander Freytag
- * @date 02/14/2012
- */
- #include <iostream>
- #include "ImplicitKernelMatrix.h"
- using namespace NICE;
- ImplicitKernelMatrix::ImplicitKernelMatrix()
- {
- }
- ImplicitKernelMatrix::~ImplicitKernelMatrix()
- {
- }
|