Changeset 456
- Timestamp:
- Dec 16, 2005, 1:19:34 PM (17 years ago)
- Location:
- trunk/lib/classifier
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/classifier/NCC.cc
r454 r456 3 3 #include <c++_tools/classifier/NCC.h> 4 4 5 #include <c++_tools/ gslapi/matrix.h>5 #include <c++_tools/classifier/DataView.h> 6 6 #include <c++_tools/gslapi/vector.h> 7 7 #include <c++_tools/statistics/Averager.h> … … 16 16 namespace classifier { 17 17 18 NCC::NCC(const gslapi::matrix& data, const gslapi::vector& target)18 NCC::NCC(const DataView& data, const gslapi::vector& target) 19 19 { 20 20 gslapi::vector sorted_target(target); … … 70 70 } 71 71 72 }} // of namespace svmand namespace theplu72 }} // of namespace classifier and namespace theplu -
trunk/lib/classifier/NCC.h
r454 r456 4 4 #define _theplu_classifier_ncc_ 5 5 6 #include <c++_tools/classifier/DataView.h> 6 7 #include <c++_tools/gslapi/matrix.h> 7 8 #include <c++_tools/statistics/Score.h> … … 31 32 /// input. Performs the training of the NCC. 32 33 /// 33 NCC(const gslapi::matrix&, const gslapi::vector&);34 NCC(const DataView&, const gslapi::vector&); 34 35 35 36 /// … … 65 66 66 67 67 }} // of namespace svmand namespace theplu68 }} // of namespace classifier and namespace theplu 68 69 69 70 #endif
Note: See TracChangeset
for help on using the changeset viewer.