Changeset 843 for branches/0.3.1/yat
- Timestamp:
- Apr 25, 2007, 4:10:44 PM (16 years ago)
- Location:
- branches/0.3.1/yat/statistics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.3.1/yat/statistics/ROC.cc
r831 r843 115 115 116 116 117 size_tROC::n(void) const117 double ROC::n(void) const 118 118 { 119 119 return n_pos()+n_neg(); … … 121 121 122 122 123 size_tROC::n_neg(void) const123 double ROC::n_neg(void) const 124 124 { 125 125 return w_neg_; … … 127 127 128 128 129 size_tROC::n_pos(void) const129 double ROC::n_pos(void) const 130 130 { 131 131 return w_pos_; -
branches/0.3.1/yat/statistics/ROC.h
r831 r843 97 97 /// @return sum of weights 98 98 /// 99 size_tn(void) const;99 double n(void) const; 100 100 101 101 /// 102 102 /// @return sum of weights with negative target 103 103 /// 104 size_tn_neg(void) const;104 double n_neg(void) const; 105 105 106 106 /// 107 107 /// @return sum of weights with positive target 108 108 /// 109 size_tn_pos(void) const;109 double n_pos(void) const; 110 110 111 111 ///
Note: See TracChangeset
for help on using the changeset viewer.