Changeset 2515
- Timestamp:
- Jul 11, 2011, 4:36:49 AM (12 years ago)
- Location:
- trunk/yat/statistics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/statistics/KolmogorovSmirnov.cc
r2119 r2515 40 40 namespace yat { 41 41 namespace statistics { 42 43 44 KolmogorovSmirnov::Element::Element(void) 45 {} 46 47 48 KolmogorovSmirnov::Element::Element(double x, bool class_label, double w) 49 : value(x), label(class_label), weight(w) 50 {} 42 51 43 52 -
trunk/yat/statistics/KolmogorovSmirnov.h
r2202 r2515 53 53 \brief default constructor 54 54 */ 55 inline Element(void) {};55 Element(void); 56 56 57 57 /** 58 58 \brief Constructor 59 59 */ 60 inline Element(double x, bool class_label, double w=1.0) 61 : value(x), label(class_label), weight(w) {}; 60 Element(double x, bool class_label, double w=1.0); 62 61 63 62 /** … … 67 66 68 67 /** 69 bool telling which group the data point belong to68 bool telling which group the data point belongs to 70 69 */ 71 70 bool label;
Note: See TracChangeset
for help on using the changeset viewer.