Changeset 680 for trunk/yat/statistics
- Timestamp:
- Oct 11, 2006, 7:49:03 PM (17 years ago)
- Location:
- trunk/yat/statistics
- Files:
-
- 1 deleted
- 61 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/statistics/Averager.cc
r675 r680 22 22 */ 23 23 24 #include " yat/statistics/Averager.h"24 #include "Averager.h" 25 25 26 26 namespace theplu { 27 namespace statistics{ 28 27 namespace yat { 28 namespace statistics { 29 29 30 Averager::Averager(void) 30 31 : n_(0), x_(0), xx_(0) … … 36 37 { 37 38 } 38 39 39 40 Averager::Averager(const Averager& a) 40 41 : n_(a.n_), x_(a.x_), xx_(a.xx_) 41 42 { 42 43 } 43 44 44 45 const Averager& Averager::operator+=(const Averager& a) 45 46 { … … 50 51 } 51 52 52 53 }} // of namespace statistics and namespace theplu 53 }}} // of namespace statistics, yat, and theplu -
trunk/yat/statistics/Averager.h
r675 r680 1 #ifndef _theplu_ statistics_averager_2 #define _theplu_ statistics_averager_1 #ifndef _theplu_yat_statistics_averager_ 2 #define _theplu_yat_statistics_averager_ 3 3 4 4 // $Id$ … … 29 29 30 30 namespace theplu{ 31 namespace yat{ 32 namespace statistics{ 31 33 32 namespace statistics{33 34 class ostream; 34 35 … … 193 194 } 194 195 195 196 }} // of namespace statistics and namespace theplu 196 }}} // of namespace statistics, yat, and theplu 197 197 198 198 #endif -
trunk/yat/statistics/AveragerPair.cc
r675 r680 22 22 */ 23 23 24 #include " yat/statistics/AveragerPair.h"25 #include " yat/statistics/Averager.h"24 #include "AveragerPair.h" 25 #include "Averager.h" 26 26 27 27 #include <cassert> … … 29 29 30 30 namespace theplu { 31 namespace yat { 31 32 namespace statistics{ 32 33 33 34 34 const AveragerPair& AveragerPair::operator+=(const AveragerPair& a) 35 35 { … … 39 39 return *this; 40 40 } 41 42 41 43 }} // of namespace statistics and namespacetheplu42 }}} // of namespace statistics, yat, and theplu -
trunk/yat/statistics/AveragerPair.h
r675 r680 1 #ifndef _theplu_ statistics_averagerpair_2 #define _theplu_ statistics_averagerpair_1 #ifndef _theplu_yat_statistics_averagerpair_ 2 #define _theplu_yat_statistics_averagerpair_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include " yat/statistics/Averager.h"27 #include "Averager.h" 28 28 29 29 #include <cassert> … … 31 31 #include <utility> 32 32 33 34 33 namespace theplu{ 34 namespace yat{ 35 35 namespace statistics{ 36 36 … … 183 183 184 184 185 }} // of namespace statistics and namespacetheplu185 }}} // of namespace statistics, yat, and theplu 186 186 187 187 #endif -
trunk/yat/statistics/AveragerPairWeighted.cc
r675 r680 22 22 */ 23 23 24 #include " yat/statistics/AveragerPairWeighted.h"25 #include " yat/statistics/AveragerPair.h"26 #include " yat/statistics/Averager.h"24 #include "AveragerPairWeighted.h" 25 #include "AveragerPair.h" 26 #include "Averager.h" 27 27 #include "yat/classifier/DataLookup1D.h" 28 28 #include "yat/classifier/DataLookupWeighted1D.h" … … 32 32 33 33 namespace theplu { 34 namespace statistics{ 34 namespace yat { 35 namespace statistics { 35 36 36 37 … … 66 67 } 67 68 68 }} // of namespace statistics and namespacetheplu69 }}} // of namespace statistics, yat, and theplu -
trunk/yat/statistics/AveragerPairWeighted.h
r675 r680 1 #ifndef _theplu_ statistics_averager_pair_weighted_2 #define _theplu_ statistics_averager_pair_weighted_1 #ifndef _theplu_yat_statistics_averager_pair_weighted_ 2 #define _theplu_yat_statistics_averager_pair_weighted_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include " yat/statistics/AveragerWeighted.h"27 #include "AveragerWeighted.h" 28 28 29 29 #include <cmath> 30 30 31 32 31 namespace theplu{ 32 namespace yat{ 33 33 namespace classifier{ 34 34 class DataLookup1D; … … 176 176 177 177 178 }} // of namespace statistics and namespacetheplu178 }}} // of namespace statistics, yat and theplu 179 179 180 180 #endif -
trunk/yat/statistics/AveragerWeighted.cc
r675 r680 22 22 */ 23 23 24 #include " yat/statistics/AveragerWeighted.h"24 #include "AveragerWeighted.h" 25 25 26 26 namespace theplu { 27 namespace yat { 27 28 namespace statistics{ 28 29 … … 35 36 36 37 37 }} // of namespace statistics and namespacetheplu38 }}} // of namespace statistics, yat and theplu -
trunk/yat/statistics/AveragerWeighted.h
r675 r680 1 #ifndef _theplu_ statistics_averager_weighted_2 #define _theplu_ statistics_averager_weighted_1 #ifndef _theplu_yat_statistics_averager_weighted_ 2 #define _theplu_yat_statistics_averager_weighted_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include " yat/statistics/Averager.h"27 #include "Averager.h" 28 28 29 29 #include <cmath> 30 30 31 31 namespace theplu{ 32 namespace yat{ 32 33 namespace statistics{ 33 34 … … 243 244 ///std::ostream& operator<<(std::ostream& s,const AveragerWeighted&); 244 245 245 }} // of namespace statistics and namespacetheplu246 }}} // of namespace statistics, yat and theplu 246 247 247 248 #endif -
trunk/yat/statistics/Distance.cc
r675 r680 22 22 */ 23 23 24 #include "yat/statistics/Distance.h" 25 24 #include "Distance.h" 26 25 #include "yat/classifier/DataLookup1D.h" 27 26 #include "yat/classifier/utility.h" … … 29 28 30 29 namespace theplu{ 30 namespace yat{ 31 31 namespace statistics{ 32 32 … … 59 59 60 60 61 }} // of namespace statistics and namespacetheplu61 }}} // of namespace statistics, yat and theplu 62 62 63 63 -
trunk/yat/statistics/Distance.h
r675 r680 1 #ifndef _theplu_ statistics_distance_2 #define _theplu_ statistics_distance_1 #ifndef _theplu_yat_statistics_distance_ 2 #define _theplu_yat_statistics_distance_ 3 3 4 4 // $Id$ … … 26 26 27 27 namespace theplu{ 28 namespace yat{ 28 29 29 30 namespace utility { … … 94 95 }; 95 96 96 }} // of namespace statistics and namespacetheplu97 }}} // of namespace statistics, yat and theplu 97 98 98 99 #endif -
trunk/yat/statistics/Fisher.cc
r675 r680 22 22 */ 23 23 24 #include " yat/statistics/Fisher.h"25 #include " yat/statistics/Score.h"26 #include " yat/statistics/utility.h"24 #include "Fisher.h" 25 #include "Score.h" 26 #include "utility.h" 27 27 #include "yat/classifier/DataLookupWeighted1D.h" 28 28 #include "yat/classifier/Target.h" … … 32 32 33 33 namespace theplu { 34 namespace yat { 34 35 namespace statistics { 35 36 … … 223 224 } 224 225 225 }} // of namespace statistics and namespacetheplu226 }}} // of namespace statistics, yat and theplu -
trunk/yat/statistics/Fisher.h
r675 r680 1 #ifndef _theplu_ statistics_fisher_2 #define _theplu_ statistics_fisher_1 #ifndef _theplu_yat_statistics_fisher_ 2 #define _theplu_yat_statistics_fisher_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include " yat/statistics/Score.h"27 #include "Score.h" 28 28 #include "yat/utility/vector.h" 29 29 … … 31 31 32 32 namespace theplu { 33 namespace yat { 33 34 namespace statistics { 34 35 /** … … 185 186 }; 186 187 187 }} // of namespace statistics and namespacetheplu188 }}} // of namespace statistics, yat and theplu 188 189 189 190 #endif -
trunk/yat/statistics/FoldChange.cc
r675 r680 22 22 */ 23 23 24 #include " yat/statistics/FoldChange.h"25 #include " yat/statistics/Score.h"26 #include " yat/statistics/Averager.h"27 #include " yat/statistics/AveragerWeighted.h"24 #include "FoldChange.h" 25 #include "Score.h" 26 #include "Averager.h" 27 #include "AveragerWeighted.h" 28 28 #include "yat/classifier/DataLookupWeighted1D.h" 29 29 #include "yat/classifier/Target.h" 30 30 31 31 namespace theplu { 32 namespace yat { 32 33 namespace statistics { 33 34 … … 109 110 } 110 111 111 } // of namespace statistics 112 } // of namespace theplu 112 }}} // of namespace statistics, yat, and theplu -
trunk/yat/statistics/FoldChange.h
r675 r680 1 #ifndef _theplu_ statistics_foldchange_2 #define _theplu_ statistics_foldchange_1 #ifndef _theplu_yat_statistics_foldchange_ 2 #define _theplu_yat_statistics_foldchange_ 3 3 4 4 // $Id$ … … 28 28 29 29 namespace theplu { 30 namespace yat { 30 31 31 32 class utility::vector; … … 91 92 }; 92 93 93 } // of namespace statistics 94 } // of namespace theplu 94 }}} // of namespace statistics, yat, and theplu 95 95 96 96 #endif -
trunk/yat/statistics/Histogram.cc
r675 r680 22 22 */ 23 23 24 #include " yat/statistics/Histogram.h"24 #include "Histogram.h" 25 25 26 26 #include <cmath> 27 27 #include <fstream> 28 28 29 30 29 namespace theplu { 30 namespace yat { 31 31 namespace statistics { 32 32 … … 135 135 } 136 136 137 }} // of namespace statistics and namespacetheplu137 }}} // of namespace statistics, yat, and theplu -
trunk/yat/statistics/Histogram.h
r675 r680 1 #ifndef _theplu_ statistics_histogram_2 #define _theplu_ statistics_histogram_1 #ifndef _theplu_yat_statistics_histogram_ 2 #define _theplu_yat_statistics_histogram_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include " yat/statistics/AveragerWeighted.h"27 #include "AveragerWeighted.h" 28 28 29 29 #include <string> 30 30 #include <vector> 31 31 32 33 32 namespace theplu { 33 namespace yat { 34 34 namespace statistics { 35 35 … … 196 196 std::ostream& operator<<(std::ostream& s,const Histogram&); 197 197 198 }} // of namespace statistics and namespacetheplu198 }}} // of namespace statistics, yat and theplu 199 199 200 200 #endif -
trunk/yat/statistics/Kernel.h
r675 r680 1 #ifndef _theplu_ statistics_kernel_2 #define _theplu_ statistics_kernel_1 #ifndef _theplu_yat_statistics_kernel_ 2 #define _theplu_yat_statistics_kernel_ 3 3 4 4 // $Id$ … … 26 26 27 27 namespace theplu { 28 namespace yat { 28 29 namespace statistics { 29 namespace regression {30 namespace regression { 30 31 /// 31 32 /// Abstract Base Class for calculating the weights in a more … … 50 51 }; 51 52 52 } // of namespace regression 53 } // of namespace statistics 54 } // of namespace theplu 53 }}}} // of namespaces regression, statisitcs, yat, and theplu 55 54 56 55 #endif -
trunk/yat/statistics/KernelBox.cc
r675 r680 22 22 */ 23 23 24 #include "yat/statistics/KernelBox.h" 25 #include "yat/statistics/Kernel.h" 24 #include "KernelBox.h" 26 25 27 26 namespace theplu { 27 namespace yat { 28 28 namespace statistics { 29 29 namespace regression { 30 30 31 KernelBox::KernelBox(void) 31 32 : Kernel() … … 41 42 } 42 43 43 } // of namespace regression 44 } // of namespace statistics 45 } // of namespace theplu 46 44 }}}} // of namespaces regression, statisitcs, yat, and theplu -
trunk/yat/statistics/KernelBox.h
r675 r680 1 #ifndef _theplu_ statistics_regression_kernel_box_2 #define _theplu_ statistics_regression_kernel_box_1 #ifndef _theplu_yat_statistics_regression_kernel_box_ 2 #define _theplu_yat_statistics_regression_kernel_box_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include " yat/statistics/Kernel.h"27 #include "Kernel.h" 28 28 29 29 namespace theplu { 30 namespace yat { 30 31 namespace statistics { 31 32 namespace regression{ … … 52 53 }; 53 54 54 } // of namespace regression 55 } // of namespace statistics 56 } // of namespace theplu 55 }}}} // of namespaces regression, statisitcs, yat, and theplu 57 56 58 57 #endif -
trunk/yat/statistics/KernelTriCube.cc
r675 r680 22 22 */ 23 23 24 #include " yat/statistics/KernelTriCube.h"25 #include " yat/statistics/Kernel.h"24 #include "KernelTriCube.h" 25 #include "Kernel.h" 26 26 27 27 #include <cmath> 28 28 29 29 namespace theplu { 30 namespace yat { 30 31 namespace statistics { 31 32 namespace regression { … … 44 45 } 45 46 46 } // of namespace regression 47 } // of namespace statistics 48 } // of namespace theplu 49 47 }}}} // of namespaces regression, statisitcs, yat, and theplu -
trunk/yat/statistics/KernelTriCube.h
r675 r680 1 #ifndef _theplu_ statistics_kernel_tricube_2 #define _theplu_ statistics_kernel_tricube_1 #ifndef _theplu_yat_statistics_kernel_tricube_ 2 #define _theplu_yat_statistics_kernel_tricube_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include "yat/statistics/Kernel.h" 28 27 #include "Kernel.h" 29 28 30 29 namespace theplu { 30 namespace yat { 31 31 namespace statistics { 32 32 namespace regression { … … 53 53 }; 54 54 55 } // of namespace regression 56 } // of namespace statistics 57 } // of namespace theplu 58 55 }}}} // of namespaces regression, statisitcs, yat, and theplu 59 56 60 57 #endif -
trunk/yat/statistics/Linear.cc
r675 r680 22 22 */ 23 23 24 #include "yat/statistics/Linear.h" 25 26 #include "yat/statistics/AveragerPair.h" 24 #include "Linear.h" 25 #include "AveragerPair.h" 27 26 #include "yat/utility/vector.h" 28 27 … … 31 30 32 31 namespace theplu { 32 namespace yat { 33 33 namespace statistics { 34 34 namespace regression { … … 68 68 } 69 69 70 }}} // of namespaces regression, statisitcs and thep70 }}}} // of namespaces regression, statisitcs, yat, and theplu -
trunk/yat/statistics/Linear.h
r675 r680 1 #ifndef _theplu_ statistics_regression_linear_2 #define _theplu_ statistics_regression_linear_1 #ifndef _theplu_yat_statistics_regression_linear_ 2 #define _theplu_yat_statistics_regression_linear_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include " yat/statistics/OneDimensional.h"27 #include "OneDimensional.h" 28 28 29 29 #include <cmath> 30 30 31 31 namespace theplu { 32 namespace yat { 32 33 namespace utility { 33 34 class vector; … … 121 122 }; 122 123 123 }}} // of namespaces regression, statisitcs andthep124 }}}} // of namespaces regression,, yat statisitcs thep 124 125 125 126 #endif -
trunk/yat/statistics/LinearWeighted.cc
r675 r680 22 22 */ 23 23 24 #include "yat/statistics/LinearWeighted.h" 25 26 #include "yat/statistics/AveragerPairWeighted.h" 24 #include "LinearWeighted.h" 25 #include "AveragerPairWeighted.h" 27 26 #include "yat/utility/vector.h" 28 27 29 28 #include <gsl/gsl_fit.h> 30 29 31 32 30 namespace theplu { 31 namespace yat { 33 32 namespace statistics { 34 33 namespace regression { … … 67 66 68 67 69 }}} // of namespaces regression, statisitcs andthep68 }}}} // of namespaces regression,, yat statisitcs thep -
trunk/yat/statistics/LinearWeighted.h
r675 r680 1 #ifndef _theplu_ statistics_regression_linear_weighted_2 #define _theplu_ statistics_regression_linear_weighted_1 #ifndef _theplu_yat_statistics_regression_linear_weighted_ 2 #define _theplu_yat_statistics_regression_linear_weighted_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include " yat/statistics/OneDimensionalWeighted.h"27 #include "OneDimensionalWeighted.h" 28 28 29 29 #include <cmath> 30 30 31 31 namespace theplu { 32 namespace yat { 32 33 namespace utility { 33 34 class vector; … … 129 130 }; 130 131 131 }}} // of namespaces regression, statisitcs andthep132 }}}} // of namespaces regression,, yat statisitcs thep 132 133 133 134 #endif -
trunk/yat/statistics/Local.cc
r675 r680 22 22 */ 23 23 24 #include "yat/statistics/Local.h" 25 24 #include "Local.h" 25 #include "Kernel.h" 26 #include "OneDimensionalWeighted.h" 26 27 #include "yat/utility/vector.h" 27 #include "yat/statistics/Kernel.h"28 #include "yat/statistics/OneDimensionalWeighted.h"29 28 30 29 #include <algorithm> … … 33 32 34 33 namespace theplu { 34 namespace yat { 35 35 namespace statistics { 36 36 namespace regression { … … 120 120 return os; 121 121 } 122 }}} // of namespaces regression, statisitcs andthep122 }}}} // of namespaces regression,, yat statisitcs thep -
trunk/yat/statistics/Local.h
r675 r680 1 #ifndef _theplu_ statistics_regression_local_2 #define _theplu_ statistics_regression_local_1 #ifndef _theplu_yat_statistics_regression_local_ 2 #define _theplu_yat_statistics_regression_local_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include " yat/statistics/Kernel.h"28 #include " yat/statistics/OneDimensionalWeighted.h"27 #include "Kernel.h" 28 #include "OneDimensionalWeighted.h" 29 29 #include "yat/utility/vector.h" 30 30 … … 32 32 33 33 namespace theplu { 34 namespace yat { 34 35 namespace statistics { 35 36 namespace regression { … … 111 112 112 113 113 }}} // of namespaces regression, statistics andthep114 }}}} // of namespaces regression,, yat statistics thep 114 115 115 116 #endif -
trunk/yat/statistics/Makefile.am
r675 r680 29 29 Distance.cc \ 30 30 Fisher.cc FoldChange.cc \ 31 Histogram.cc Kernel .cc KernelBox.cc KernelTriCube.cc Linear.cc \31 Histogram.cc KernelBox.cc KernelTriCube.cc Linear.cc \ 32 32 LinearWeighted.cc Local.cc \ 33 33 MultiDimensional.cc \ -
trunk/yat/statistics/MultiDimensional.cc
r675 r680 22 22 */ 23 23 24 #include " yat/statistics/MultiDimensional.h"24 #include "MultiDimensional.h" 25 25 #include "yat/utility/matrix.h" 26 26 #include "yat/utility/vector.h" 27 27 28 28 namespace theplu { 29 namespace yat { 29 30 namespace statistics { 30 31 namespace regression { … … 67 68 } 68 69 69 }}} // of namespaces regression, statisitcs andthep70 }}}} // of namespaces regression,, yat statisitcs thep -
trunk/yat/statistics/MultiDimensional.h
r675 r680 1 #ifndef _theplu_ statistics_regression_multidimensional_2 #define _theplu_ statistics_regression_multidimensional_1 #ifndef _theplu_yat_statistics_regression_multidimensional_ 2 #define _theplu_yat_statistics_regression_multidimensional_ 3 3 4 4 // $Id$ … … 30 30 #include <gsl/gsl_multifit.h> 31 31 32 33 32 namespace theplu { 33 namespace yat { 34 34 namespace statistics { 35 35 namespace regression { … … 88 88 89 89 90 }}} // of namespaces regression, statisitcs andthep90 }}}} // of namespaces regression,, yat statisitcs thep 91 91 92 92 #endif -
trunk/yat/statistics/MultiDimensionalWeighted.cc
r675 r680 22 22 */ 23 23 24 #include " yat/statistics/MultiDimensionalWeighted.h"24 #include "MultiDimensionalWeighted.h" 25 25 #include "yat/utility/matrix.h" 26 26 #include "yat/utility/vector.h" … … 29 29 30 30 namespace theplu { 31 namespace yat { 31 32 namespace statistics { 32 33 namespace regression { … … 74 75 } 75 76 76 }}} // of namespaces regression, statisitcs andthep77 }}}} // of namespaces regression,, yat statisitcs thep -
trunk/yat/statistics/MultiDimensionalWeighted.h
r675 r680 1 #ifndef _theplu_ statistics_regression_multidimensional_weighted_2 #define _theplu_ statistics_regression_multidimensional_weighted_1 #ifndef _theplu_yat_statistics_regression_multidimensional_weighted_ 2 #define _theplu_yat_statistics_regression_multidimensional_weighted_ 3 3 4 4 // $Id$ … … 30 30 #include <gsl/gsl_multifit.h> 31 31 32 33 32 namespace theplu { 33 namespace yat { 34 34 namespace statistics { 35 35 namespace regression { … … 89 89 90 90 91 }}} // of namespaces regression, statisitcs andthep91 }}}} // of namespaces regression,, yat statisitcs thep 92 92 93 93 #endif -
trunk/yat/statistics/Naive.cc
r675 r680 22 22 */ 23 23 24 #include "yat/statistics/Naive.h" 25 26 #include "yat/statistics/Averager.h" 27 #include "yat/statistics/AveragerWeighted.h" 28 #include "yat/statistics/OneDimensional.h" 24 #include "Naive.h" 25 #include "Averager.h" 26 #include "AveragerWeighted.h" 27 #include "OneDimensional.h" 29 28 #include "yat/utility/vector.h" 30 29 … … 32 31 #include <iostream> 33 32 34 35 33 namespace theplu { 34 namespace yat { 36 35 namespace statistics { 37 36 namespace regression { … … 61 60 62 61 63 }}} // of namespaces regression, statisitcs andthep62 }}}} // of namespaces regression,, yat statisitcs thep -
trunk/yat/statistics/Naive.h
r675 r680 1 #ifndef _theplu_ statistics_regression_naive_2 #define _theplu_ statistics_regression_naive_1 #ifndef _theplu_yat_statistics_regression_naive_ 2 #define _theplu_yat_statistics_regression_naive_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include " yat/statistics/OneDimensional.h"27 #include "OneDimensional.h" 28 28 29 29 #include <iostream> … … 31 31 32 32 namespace theplu { 33 namespace yat { 33 34 namespace utility { 34 35 class vector; … … 93 94 94 95 95 }}} // of namespaces regression, statisitcs andthep96 }}}} // of namespaces regression,, yat statisitcs thep 96 97 97 98 #endif -
trunk/yat/statistics/NaiveWeighted.cc
r675 r680 22 22 */ 23 23 24 #include "yat/statistics/NaiveWeighted.h" 25 26 #include "yat/statistics/AveragerWeighted.h" 27 #include "yat/statistics/OneDimensional.h" 24 #include "NaiveWeighted.h" 25 #include "AveragerWeighted.h" 26 #include "OneDimensional.h" 28 27 #include "yat/utility/vector.h" 29 28 30 31 29 namespace theplu { 30 namespace yat { 32 31 namespace statistics { 33 32 namespace regression { … … 47 46 48 47 49 }}} // of namespaces regression, statisitcs andthep48 }}}} // of namespaces regression,, yat statisitcs thep -
trunk/yat/statistics/NaiveWeighted.h
r675 r680 1 #ifndef _theplu_ statistics_regression_naive_weighted_2 #define _theplu_ statistics_regression_naive_weighted_1 #ifndef _theplu_yat_statistics_regression_naive_weighted_ 2 #define _theplu_yat_statistics_regression_naive_weighted_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include " yat/statistics/OneDimensionalWeighted.h"27 #include "OneDimensionalWeighted.h" 28 28 29 29 #include <cmath> … … 31 31 #include <utility> 32 32 33 34 33 namespace theplu { 34 namespace yat { 35 35 namespace utility { 36 36 class vector; … … 100 100 101 101 102 }}} // of namespaces regression, statisitcs andthep102 }}}} // of namespaces regression,, yat statisitcs thep 103 103 104 104 #endif -
trunk/yat/statistics/OneDimensional.cc
r675 r680 22 22 */ 23 23 24 #include " yat/statistics/OneDimensional.h"24 #include "OneDimensional.h" 25 25 26 26 namespace theplu { 27 namespace yat { 27 28 namespace statistics { 28 29 namespace regression { … … 47 48 } 48 49 49 }}} // of namespaces regression, statisitcs andthep50 }}}} // of namespaces regression,, yat statisitcs thep -
trunk/yat/statistics/OneDimensional.h
r675 r680 1 #ifndef _theplu_ statistics_regression_onedimensioanl_2 #define _theplu_ statistics_regression_onedimensioanl_1 #ifndef _theplu_yat_statistics_regression_onedimensioanl_ 2 #define _theplu_yat_statistics_regression_onedimensioanl_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include " yat/statistics/AveragerPair.h"27 #include "AveragerPair.h" 28 28 29 29 #include <ostream> 30 30 31 31 namespace theplu { 32 namespace yat { 32 33 namespace utility { 33 34 class vector; … … 96 97 }; 97 98 98 }}} // of namespaces regression, statisitcs andthep99 }}}} // of namespaces regression,, yat statisitcs thep 99 100 100 101 #endif -
trunk/yat/statistics/OneDimensionalWeighted.h
r675 r680 1 #ifndef _theplu_ statistics_regression_onedimensioanlweighted_2 #define _theplu_ statistics_regression_onedimensioanlweighted_1 #ifndef _theplu_yat_statistics_regression_onedimensioanlweighted_ 2 #define _theplu_yat_statistics_regression_onedimensioanlweighted_ 3 3 4 4 // $Id$ … … 28 28 29 29 namespace theplu { 30 namespace yat { 30 31 namespace utility { 31 32 class vector; … … 89 90 }; 90 91 91 }}} // of namespaces regression, statisitcs andthep92 }}}} // of namespaces regression,, yat statisitcs thep 92 93 93 94 #endif -
trunk/yat/statistics/Pearson.cc
r675 r680 22 22 */ 23 23 24 #include " yat/statistics/Pearson.h"25 #include " yat/statistics/AveragerPair.h"26 #include " yat/statistics/AveragerPairWeighted.h"24 #include "Pearson.h" 25 #include "AveragerPair.h" 26 #include "AveragerPairWeighted.h" 27 27 #include "yat/utility/vector.h" 28 28 #include "yat/classifier/DataLookupWeighted1D.h" … … 32 32 #include <gsl/gsl_cdf.h> 33 33 34 35 34 namespace theplu { 35 namespace yat { 36 36 namespace statistics { 37 37 … … 119 119 } 120 120 121 }} // of namespace statistics and namespacetheplu121 }}} // of namespace statistics, yat and theplu -
trunk/yat/statistics/Pearson.h
r675 r680 1 #ifndef _theplu_ statistics_pearson_2 #define _theplu_ statistics_pearson_1 #ifndef _theplu_yat_statistics_pearson_ 2 #define _theplu_yat_statistics_pearson_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include " yat/statistics/Score.h"27 #include "Score.h" 28 28 29 29 namespace theplu { 30 namespace yat { 30 31 namespace utility { 31 32 class vector; … … 106 107 }; 107 108 108 }} // of namespace statistics and namespacetheplu109 }}} // of namespace statistics, yat and theplu 109 110 110 111 #endif -
trunk/yat/statistics/PearsonDistance.cc
r675 r680 22 22 */ 23 23 24 #include "yat/statistics/PearsonDistance.h" 25 26 #include "yat/statistics/AveragerPair.h" 27 #include "yat/statistics/AveragerPairWeighted.h" 24 #include "PearsonDistance.h" 25 #include "AveragerPair.h" 26 #include "AveragerPairWeighted.h" 28 27 #include "yat/utility/vector.h" 29 28 30 29 namespace theplu{ 30 namespace yat{ 31 31 namespace statistics{ 32 32 … … 53 53 54 54 55 }} // of namespace statistics and namespacetheplu55 }}} // of namespace statistics, yat and theplu 56 56 57 57 -
trunk/yat/statistics/PearsonDistance.h
r675 r680 1 #ifndef _theplu_ statistics_pearson_distance_2 #define _theplu_ statistics_pearson_distance_1 #ifndef _theplu_yat_statistics_pearson_distance_ 2 #define _theplu_yat_statistics_pearson_distance_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include " yat/statistics/Distance.h"27 #include "Distance.h" 28 28 29 29 namespace theplu{ 30 namespace yat{ 30 31 31 32 namespace utility { … … 72 73 }; 73 74 74 }} // of namespace statistics and namespacetheplu75 }}} // of namespace statistics, yat and theplu 75 76 76 77 #endif -
trunk/yat/statistics/Polynomial.cc
r675 r680 22 22 */ 23 23 24 #include " yat/statistics/Polynomial.h"24 #include "Polynomial.h" 25 25 #include "yat/utility/matrix.h" 26 26 #include "yat/utility/vector.h" 27 27 28 28 namespace theplu { 29 namespace yat { 29 30 namespace statistics { 30 31 namespace regression { … … 64 65 } 65 66 66 }}} // of namespaces regression, statisitcs andthep67 }}}} // of namespaces regression,, yat statisitcs thep -
trunk/yat/statistics/Polynomial.h
r675 r680 1 #ifndef _theplu_ statistics_regression_polynomial_2 #define _theplu_ statistics_regression_polynomial_1 #ifndef _theplu_yat_statistics_regression_polynomial_ 2 #define _theplu_yat_statistics_regression_polynomial_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include "yat/statistics/OneDimensional.h" 28 #include "yat/statistics/MultiDimensional.h" 29 27 #include "OneDimensional.h" 28 #include "MultiDimensional.h" 30 29 #include "yat/utility/vector.h" 31 30 … … 34 33 #include <cassert> 35 34 36 37 35 namespace theplu { 36 namespace yat { 38 37 namespace statistics { 39 38 namespace regression { … … 90 89 91 90 92 }}} // of namespaces regression, statisitcs andthep91 }}}} // of namespaces regression,, yat statisitcs thep 93 92 94 93 #endif -
trunk/yat/statistics/PolynomialWeighted.cc
r675 r680 22 22 */ 23 23 24 #include " yat/statistics/PolynomialWeighted.h"24 #include "PolynomialWeighted.h" 25 25 #include "yat/utility/matrix.h" 26 26 #include "yat/utility/vector.h" … … 29 29 30 30 namespace theplu { 31 namespace yat { 31 32 namespace statistics { 32 33 namespace regression { … … 71 72 } 72 73 73 }}} // of namespaces regression, statisitcs andthep74 }}}} // of namespaces regression,, yat statisitcs thep -
trunk/yat/statistics/PolynomialWeighted.h
r675 r680 1 #ifndef _theplu_ statistics_regression_polynomial_weighted_2 #define _theplu_ statistics_regression_polynomial_weighted_1 #ifndef _theplu_yat_statistics_regression_polynomial_weighted_ 2 #define _theplu_yat_statistics_regression_polynomial_weighted_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include "yat/statistics/OneDimensionalWeighted.h" 28 #include "yat/statistics/MultiDimensionalWeighted.h" 29 27 #include "OneDimensionalWeighted.h" 28 #include "MultiDimensionalWeighted.h" 30 29 #include "yat/utility/vector.h" 31 30 32 31 #include <cassert> 33 32 34 35 33 namespace theplu { 34 namespace yat { 36 35 namespace statistics { 37 36 namespace regression { … … 93 92 94 93 95 }}} // of namespaces regression, statisitcs andthep94 }}}} // of namespaces regression,, yat statisitcs thep 96 95 97 96 #endif -
trunk/yat/statistics/ROC.cc
r675 r680 22 22 */ 23 23 24 #include "yat/statistics/ROC.h" 25 24 #include "ROC.h" 26 25 #include "yat/classifier/DataLookupWeighted1D.h" 27 26 #include "yat/utility/stl_utility.h" … … 34 33 #include <vector> 35 34 36 37 35 namespace theplu { 36 namespace yat { 38 37 namespace statistics { 39 38 … … 223 222 224 223 225 }} // of namespace statistics and namespacetheplu224 }}} // of namespace statistics, yat and theplu -
trunk/yat/statistics/ROC.h
r675 r680 1 #ifndef _theplu_ statistics_roc_2 #define _theplu_ statistics_roc_1 #ifndef _theplu_yat_statistics_roc_ 2 #define _theplu_yat_statistics_roc_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include "Score.h" 27 28 #include "yat/classifier/Target.h" 28 #include "yat/statistics/Score.h"29 29 30 30 #include <utility> … … 32 32 33 33 namespace theplu { 34 namespace yat { 34 35 namespace utility { 35 36 class vector; … … 164 165 165 166 166 }} // of namespace statistics and namespacetheplu167 }}} // of namespace statistics, yat and theplu 167 168 168 169 #endif -
trunk/yat/statistics/SAM.cc
r675 r680 22 22 */ 23 23 24 #include " yat/statistics/SAM.h"25 #include " yat/statistics/Averager.h"26 #include " yat/statistics/AveragerWeighted.h"24 #include "SAM.h" 25 #include "Averager.h" 26 #include "AveragerWeighted.h" 27 27 #include "yat/classifier/DataLookupWeighted1D.h" 28 28 #include "yat/classifier/Target.h" … … 32 32 33 33 namespace theplu { 34 namespace yat { 34 35 namespace statistics { 35 36 … … 113 114 114 115 115 }} // of namespace statistics and namespacetheplu116 }}} // of namespace statistics, yat and theplu -
trunk/yat/statistics/SAM.h
r675 r680 1 #ifndef _theplu_ statistics_sam2 #define _theplu_ statistics_sam1 #ifndef _theplu_yat_statistics_sam 2 #define _theplu_yat_statistics_sam 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include " yat/statistics/Score.h"27 #include "Score.h" 28 28 29 29 namespace theplu { 30 namespace yat { 30 31 namespace utility { 31 32 class vector; … … 100 101 }; 101 102 102 }} // of namespace statistics and namespacetheplu103 }}} // of namespace statistics, yat and theplu 103 104 104 105 #endif -
trunk/yat/statistics/SNR.cc
r676 r680 22 22 */ 23 23 24 #include " yat/statistics/SNR.h"25 #include " yat/statistics/Averager.h"26 #include " yat/statistics/AveragerWeighted.h"24 #include "SNR.h" 25 #include "Averager.h" 26 #include "AveragerWeighted.h" 27 27 #include "yat/classifier/DataLookupWeighted1D.h" 28 28 #include "yat/classifier/Target.h" 29 29 30 30 namespace theplu { 31 namespace yat { 31 32 namespace statistics { 32 33 … … 109 110 110 111 111 }} // of namespace statistics and namespacetheplu112 }}} // of namespace statistics, yat and theplu -
trunk/yat/statistics/SNR.h
r675 r680 1 #ifndef _theplu_ statistics_snr2 #define _theplu_ statistics_snr1 #ifndef _theplu_yat_statistics_snr 2 #define _theplu_yat_statistics_snr 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include " yat/statistics/Score.h"27 #include "Score.h" 28 28 29 29 #include <gsl/gsl_cdf.h> 30 30 31 31 namespace theplu { 32 namespace yat { 32 33 namespace utility { 33 34 class vector; … … 82 83 }; 83 84 84 }} // of namespace statistics and namespacetheplu85 }}} // of namespace statistics, yat and theplu 85 86 86 87 #endif -
trunk/yat/statistics/Score.cc
r675 r680 22 22 */ 23 23 24 #include " yat/statistics/Score.h"24 #include "Score.h" 25 25 26 26 namespace theplu { 27 namespace yat { 27 28 namespace statistics { 28 29 … … 32 33 } 33 34 34 }} // of namespace statistics and namespacetheplu35 }}} // of namespace statistics, yat and theplu -
trunk/yat/statistics/Score.h
r675 r680 1 #ifndef _theplu_ statistics_score_2 #define _theplu_ statistics_score_1 #ifndef _theplu_yat_statistics_score_ 2 #define _theplu_yat_statistics_score_ 3 3 4 4 // $Id$ … … 35 35 36 36 namespace theplu { 37 namespace yat { 37 38 namespace classifier { 38 39 class Target; … … 150 151 }; // class Score 151 152 152 }} // of namespace statistics and namespacetheplu153 }}} // of namespace statistics, yat and theplu 153 154 154 155 #endif -
trunk/yat/statistics/WilcoxonFoldChange.cc
r675 r680 22 22 */ 23 23 24 #include " yat/statistics/WilcoxonFoldChange.h"25 #include " yat/statistics/utility.h"24 #include "WilcoxonFoldChange.h" 25 #include "utility.h" 26 26 #include "yat/classifier/Target.h" 27 27 … … 31 31 32 32 namespace theplu { 33 namespace yat { 33 34 namespace statistics { 34 35 … … 38 39 { 39 40 } 40 41 41 42 42 … … 76 76 } 77 77 78 } // of namespace statistics 79 } // of namespace theplu 78 }}} // of namespace statistics, yat, and theplu -
trunk/yat/statistics/WilcoxonFoldChange.h
r675 r680 1 #ifndef _theplu_ statistics_wilcoxonfoldchange_2 #define _theplu_ statistics_wilcoxonfoldchange_1 #ifndef _theplu_yat_statistics_wilcoxonfoldchange_ 2 #define _theplu_yat_statistics_wilcoxonfoldchange_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include " yat/statistics/Score.h"27 #include "Score.h" 28 28 29 29 namespace theplu { 30 namespace yat { 30 31 namespace utility { 31 32 class vector; … … 89 90 /// 90 91 WilcoxonFoldChange& operator=(const WilcoxonFoldChange&); 91 92 92 }; 93 93 94 } // of namespace statistics 95 } // of namespace theplu 94 }}} // of namespace statistics, yat, and theplu 96 95 97 96 #endif -
trunk/yat/statistics/tScore.cc
r676 r680 22 22 */ 23 23 24 #include " yat/statistics/tScore.h"25 #include " yat/statistics/Averager.h"26 #include " yat/statistics/AveragerWeighted.h"24 #include "tScore.h" 25 #include "Averager.h" 26 #include "AveragerWeighted.h" 27 27 #include "yat/classifier/DataLookupWeighted1D.h" 28 28 #include "yat/classifier/Target.h" … … 31 31 #include <cmath> 32 32 33 34 33 namespace theplu { 34 namespace yat { 35 35 namespace statistics { 36 36 … … 122 122 } 123 123 124 125 126 }} // of namespace statistics and namespace theplu 124 }}} // of namespace statistics, yat, and theplu -
trunk/yat/statistics/tScore.h
r675 r680 1 #ifndef _theplu_ statistics_tscore_2 #define _theplu_ statistics_tscore_1 #ifndef _theplu_yat_statistics_tscore_ 2 #define _theplu_yat_statistics_tscore_ 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include " yat/statistics/Score.h"27 #include "Score.h" 28 28 29 29 #include <gsl/gsl_cdf.h> … … 31 31 32 32 namespace theplu { 33 namespace yat { 33 34 namespace utility { 34 35 class vector; … … 124 125 }; 125 126 126 }} // of namespace statistics and namespacetheplu127 }}} // of namespace statistics, yat and theplu 127 128 128 129 #endif -
trunk/yat/statistics/utility.cc
r675 r680 22 22 */ 23 23 24 #include " yat/statistics/utility.h"24 #include "utility.h" 25 25 26 26 #include <gsl/gsl_randist.h> … … 28 28 29 29 namespace theplu { 30 namespace yat { 30 31 namespace statistics { 31 32 … … 81 82 } 82 83 83 }} // of namespace statistics and namespacetheplu84 }}} // of namespace statistics, yat and theplu -
trunk/yat/statistics/utility.h
r675 r680 1 #ifndef _theplu_ statistics_utility_2 #define _theplu_ statistics_utility_1 #ifndef _theplu_yat_statistics_utility_ 2 #define _theplu_yat_statistics_utility_ 3 3 4 4 // $Id$ … … 35 35 36 36 namespace theplu { 37 namespace yat { 37 38 namespace statistics { 38 39 … … 182 183 183 184 184 }} // of namespace statistics and namespacetheplu185 }}} // of namespace statistics, yat and theplu 185 186 186 187 #endif 187
Note: See TracChangeset
for help on using the changeset viewer.