Changeset 103 for trunk/src/ROC.h
- Timestamp:
- Jun 15, 2004, 4:29:15 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ROC.h
r102 r103 66 66 67 67 /// 68 /// @ return a vector of outputs that is sorted with respect to 69 /// the corresponding score value 70 /// 71 gslapi::vector ROC::target(void) const; 72 73 /// 68 74 /// Changes minimum_size , i.e. the threshold when a normal 69 75 /// approximation is used for the p-value calculation. … … 88 94 double ROC::get_p_exact(const double, const double, 89 95 const double); 96 97 /// 98 /// sorting 99 /// 100 void ROC::sort(const gslapi::vector&, const gslapi::vector&); 90 101 91 102 }; 103 104 /// 105 /// The output operator for the ROC class. The output is an Nx2 106 /// matrix, where the first column is the sensitivity and second 107 /// is the specificity. 108 /// 109 std::ostream& operator<< (std::ostream& s, const ROC&); 110 92 111 93 112 }} // of namespace cpptools and namespace theplu
Note: See TracChangeset
for help on using the changeset viewer.