Changeset 683 for trunk/yat/statistics
- Timestamp:
- Oct 12, 2006, 12:20:36 AM (17 years ago)
- Location:
- trunk/yat/statistics
- Files:
-
- 27 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/statistics/AveragerPair.cc
r680 r683 30 30 namespace theplu { 31 31 namespace yat { 32 namespace statistics {32 namespace statistics { 33 33 34 34 const AveragerPair& AveragerPair::operator+=(const AveragerPair& a) -
trunk/yat/statistics/AveragerPairWeighted.h
r680 r683 1 #ifndef _theplu_yat_statistics_averager _pair_weighted_2 #define _theplu_yat_statistics_averager _pair_weighted_1 #ifndef _theplu_yat_statistics_averagerpairweighted_ 2 #define _theplu_yat_statistics_averagerpairweighted_ 3 3 4 4 // $Id$ … … 175 175 } 176 176 177 178 }}} // of namespace statistics, yat and theplu 177 }}} // of namespace statistics, yat, and theplu 179 178 180 179 #endif -
trunk/yat/statistics/AveragerWeighted.cc
r680 r683 26 26 namespace theplu { 27 27 namespace yat { 28 namespace statistics{ 29 28 namespace statistics { 30 29 31 30 AveragerWeighted AveragerWeighted::operator+=(const AveragerWeighted& a) … … 35 34 } 36 35 37 38 }}} // of namespace statistics, yat and theplu 36 }}} // of namespace statistics, yat, and theplu -
trunk/yat/statistics/AveragerWeighted.h
r680 r683 1 #ifndef _theplu_yat_statistics_averager _weighted_2 #define _theplu_yat_statistics_averager _weighted_1 #ifndef _theplu_yat_statistics_averagerweighted_ 2 #define _theplu_yat_statistics_averagerweighted_ 3 3 4 4 // $Id$ … … 244 244 ///std::ostream& operator<<(std::ostream& s,const AveragerWeighted&); 245 245 246 }}} // of namespace statistics, yat and theplu246 }}} // of namespace statistics, yat, and theplu 247 247 248 248 #endif -
trunk/yat/statistics/Distance.cc
r680 r683 58 58 } 59 59 60 61 }}} // of namespace statistics, yat and theplu 62 63 60 }}} // of namespace statistics, yat, and theplu -
trunk/yat/statistics/Distance.h
r680 r683 35 35 } 36 36 37 namespace statistics{ 37 38 38 namespace statistics{39 39 /// 40 40 /// Interface class for calculating distances between arrays. … … 95 95 }; 96 96 97 }}} // of namespace statistics, yat and theplu97 }}} // of namespace statistics, yat, and theplu 98 98 99 99 #endif -
trunk/yat/statistics/Fisher.cc
r680 r683 224 224 } 225 225 226 }}} // of namespace statistics, yat and theplu226 }}} // of namespace statistics, yat, and theplu -
trunk/yat/statistics/Fisher.h
r680 r683 165 165 double score(const u_int a, const u_int b, 166 166 const u_int c, const u_int d); 167 168 167 169 168 … … 186 185 }; 187 186 188 }}} // of namespace statistics, yat and theplu187 }}} // of namespace statistics, yat, and theplu 189 188 190 189 #endif 191 -
trunk/yat/statistics/FoldChange.cc
r680 r683 33 33 namespace statistics { 34 34 35 36 35 FoldChange::FoldChange(bool absolute) 37 36 : Score(absolute) … … 39 38 } 40 39 41 42 43 40 FoldChange::FoldChange(const FoldChange& other) 44 41 : Score(other) 45 42 { 46 43 } 47 48 49 44 50 45 FoldChange& FoldChange::operator=(const FoldChange& other) … … 90 85 } 91 86 92 93 87 double FoldChange::score(const classifier::Target& target, 94 88 const utility::vector& value, -
trunk/yat/statistics/FoldChange.h
r680 r683 31 31 32 32 class utility::vector; 33 34 33 35 34 namespace statistics { -
trunk/yat/statistics/Histogram.h
r680 r683 196 196 std::ostream& operator<<(std::ostream& s,const Histogram&); 197 197 198 }}} // of namespace statistics, yat and theplu198 }}} // of namespace statistics, yat, and theplu 199 199 200 200 #endif -
trunk/yat/statistics/Makefile.am
-
Property
svn:eol-style
set to
native
-
Property
svn:keywords
set to
Author Date Id Revision
r682 r683 1 1 ## Process this file with automake to produce Makefile.in 2 2 ## 3 ## $Id : Makefile.am 281 2005-04-20 16:45:02Z peter$3 ## $Id$ 4 4 5 5 # Copyright (C) 2005 Jari Häkkinen, Peter Johansson -
Property
svn:eol-style
set to
-
trunk/yat/statistics/Pearson.cc
r680 r683 119 119 } 120 120 121 }}} // of namespace statistics, yat and theplu121 }}} // of namespace statistics, yat, and theplu -
trunk/yat/statistics/Pearson.h
r680 r683 103 103 int nof_samples_; 104 104 105 106 105 // void centralize(utility::vector&, const utility::vector&); 107 106 }; 108 107 109 }}} // of namespace statistics, yat and theplu108 }}} // of namespace statistics, yat, and theplu 110 109 111 110 #endif 112 -
trunk/yat/statistics/PearsonDistance.cc
r680 r683 39 39 } 40 40 41 42 41 double PearsonDistance::operator()(const utility::vector& x, 43 42 const utility::vector& y, … … 50 49 } 51 50 52 53 54 55 }}} // of namespace statistics, yat and theplu 56 57 51 }}} // of namespace statistics, yat, and theplu -
trunk/yat/statistics/PearsonDistance.h
r680 r683 1 #ifndef _theplu_yat_statistics_pearson _distance_2 #define _theplu_yat_statistics_pearson _distance_1 #ifndef _theplu_yat_statistics_pearsondistance_ 2 #define _theplu_yat_statistics_pearsondistance_ 3 3 4 4 // $Id$ … … 38 38 } 39 39 40 41 40 namespace statistics{ 42 41 /// … … 73 72 }; 74 73 75 }}} // of namespace statistics, yat and theplu74 }}} // of namespace statistics, yat, and theplu 76 75 77 76 #endif -
trunk/yat/statistics/ROC.cc
r680 r683 221 221 } 222 222 223 224 }}} // of namespace statistics, yat and theplu 223 }}} // of namespace statistics, yat, and theplu -
trunk/yat/statistics/ROC.h
r680 r683 164 164 std::ostream& operator<< (std::ostream& s, const ROC&); 165 165 166 167 }}} // of namespace statistics, yat and theplu 166 }}} // of namespace statistics, yat, and theplu 168 167 169 168 #endif 170 -
trunk/yat/statistics/SAM.cc
r680 r683 112 112 } 113 113 114 115 116 }}} // of namespace statistics, yat and theplu 114 }}} // of namespace statistics, yat, and theplu -
trunk/yat/statistics/SAM.h
r680 r683 101 101 }; 102 102 103 }}} // of namespace statistics, yat and theplu103 }}} // of namespace statistics, yat, and theplu 104 104 105 105 #endif 106 -
trunk/yat/statistics/SNR.cc
r680 r683 108 108 } 109 109 110 111 112 }}} // of namespace statistics, yat and theplu 110 }}} // of namespace statistics, yat, and theplu -
trunk/yat/statistics/SNR.h
r680 r683 83 83 }; 84 84 85 }}} // of namespace statistics, yat and theplu85 }}} // of namespace statistics, yat, and theplu 86 86 87 87 #endif 88 -
trunk/yat/statistics/Score.cc
r680 r683 33 33 } 34 34 35 }}} // of namespace statistics, yat and theplu35 }}} // of namespace statistics, yat, and theplu -
trunk/yat/statistics/Score.h
r680 r683 151 151 }; // class Score 152 152 153 }}} // of namespace statistics, yat and theplu153 }}} // of namespace statistics, yat, and theplu 154 154 155 155 #endif -
trunk/yat/statistics/tScore.h
r680 r683 28 28 29 29 #include <gsl/gsl_cdf.h> 30 31 30 32 31 namespace theplu { … … 117 116 double p_value() const; 118 117 119 120 121 118 private: 122 119 double t_; … … 125 122 }; 126 123 127 }}} // of namespace statistics, yat and theplu124 }}} // of namespace statistics, yat, and theplu 128 125 129 126 #endif 130 -
trunk/yat/statistics/utility.cc
r680 r683 82 82 } 83 83 84 }}} // of namespace statistics, yat and theplu84 }}} // of namespace statistics, yat, and theplu -
trunk/yat/statistics/utility.h
r680 r683 182 182 } 183 183 184 185 }}} // of namespace statistics, yat and theplu 184 }}} // of namespace statistics, yat, and theplu 186 185 187 186 #endif
Note: See TracChangeset
for help on using the changeset viewer.