source: trunk/lib/classifier/SupervisedClassifier.cc @ 476

Last change on this file since 476 was 476, checked in by Markus Ringnér, 18 years ago

Added interface class for supervised classifiers. Fixed NCC to comply with Peters last check-in. Fixed bugs in AveragerPairWeighted?

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 282 bytes
Line 
1// $Id: SupervisedClassifier.cc 476 2005-12-22 16:37:27Z markus $
2
3#include <c++_tools/classifier/SupervisedClassifier.h>
4
5namespace theplu {
6namespace classifier {
7
8  SupervisedClassifier::SupervisedClassifier(const DataLookup2D& mv, 
9                                             const Target& target)
10    : matrix_(mv), target_(target), trained_(false)
11  {
12  }
13
14}}
Note: See TracBrowser for help on using the repository browser.