source: trunk/lib/svm/KernelView.cc @ 330

Last change on this file since 330 was 330, checked in by Peter, 18 years ago

added an abstract base class for Kernel from which Kernel_SEV Kernel_MEV are inherited. Also added a separate class for viewing into subKernels

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 489 bytes
Line 
1// $Id:$
2
3#include <c++_tools/svm/KernelView.h>
4
5#include <c++_tools/svm/Kernel.h>
6#include <c++_tools/svm/KernelFunction.h>
7#include <c++_tools/svm/Kernel.h>
8#include <c++_tools/gslapi/matrix.h>
9#include <c++_tools/gslapi/vector.h>
10
11namespace theplu {
12namespace svm { 
13
14KernelView::KernelView(const Kernel& kernel, const std::vector<size_t>& index)
15  : Kernel(data,kf), kernel_(&kernel), index_(index)
16{
17}
18
19KernelView::~KernelView(void)
20{
21} 
22
23}} // of namespace svm and namespace theplu
Note: See TracBrowser for help on using the repository browser.