- Timestamp:
- Oct 11, 2006, 11:38:46 PM (16 years ago)
- Location:
- trunk/yat/statistics
- Files:
-
- 26 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/statistics/Kernel.h
r680 r681 1 #ifndef _theplu_yat_ statistics_kernel_2 #define _theplu_yat_ statistics_kernel_1 #ifndef _theplu_yat_regression_kernel_ 2 #define _theplu_yat_regression_kernel_ 3 3 4 4 // $Id$ … … 27 27 namespace theplu { 28 28 namespace yat { 29 namespace statistics {30 29 namespace regression { 30 31 31 /// 32 32 /// Abstract Base Class for calculating the weights in a more 33 33 /// general way than classical rectangular windows. 34 34 /// 35 36 35 class Kernel 37 36 { … … 51 50 }; 52 51 53 }}} } // of namespaces regression, statisitcs, yat, and theplu52 }}} // of namespaces regression, yat, and theplu 54 53 55 54 #endif -
trunk/yat/statistics/KernelBox.cc
r680 r681 26 26 namespace theplu { 27 27 namespace yat { 28 namespace statistics {29 28 namespace regression { 30 29 … … 42 41 } 43 42 44 }}} } // of namespaces regression, statisitcs, yat, and theplu43 }}} // of namespaces regression, yat, and theplu -
trunk/yat/statistics/KernelBox.h
r680 r681 1 #ifndef _theplu_yat_ statistics_regression_kernel_box_2 #define _theplu_yat_ statistics_regression_kernel_box_1 #ifndef _theplu_yat_regression_kernelbox_ 2 #define _theplu_yat_regression_kernelbox_ 3 3 4 4 // $Id$ … … 29 29 namespace theplu { 30 30 namespace yat { 31 namespace statistics { 32 namespace regression{ 31 namespace regression { 33 32 34 33 /// … … 53 52 }; 54 53 55 }}} } // of namespaces regression, statisitcs, yat, and theplu54 }}} // of namespaces regression, yat, and theplu 56 55 57 56 #endif -
trunk/yat/statistics/KernelTriCube.cc
r680 r681 29 29 namespace theplu { 30 30 namespace yat { 31 namespace statistics {32 31 namespace regression { 33 32 … … 45 44 } 46 45 47 }}} } // of namespaces regression, statisitcs, yat, and theplu46 }}} // of namespaces regression, yat, and theplu -
trunk/yat/statistics/KernelTriCube.h
r680 r681 1 #ifndef _theplu_yat_ statistics_kernel_tricube_2 #define _theplu_yat_ statistics_kernel_tricube_1 #ifndef _theplu_yat_regression_kerneltricube_ 2 #define _theplu_yat_regression_kerneltricube_ 3 3 4 4 // $Id$ … … 29 29 namespace theplu { 30 30 namespace yat { 31 namespace statistics {32 31 namespace regression { 33 32 … … 53 52 }; 54 53 55 }}} } // of namespaces regression, statisitcs, yat, and theplu54 }}} // of namespaces regression, yat, and theplu 56 55 57 56 #endif -
trunk/yat/statistics/Linear.cc
r680 r681 28 28 #include <gsl/gsl_fit.h> 29 29 30 31 30 namespace theplu { 32 31 namespace yat { 33 namespace statistics {34 32 namespace regression { 35 36 33 37 34 void Linear::fit(const utility::vector& x, const utility::vector& y) … … 68 65 } 69 66 70 }}} } // of namespaces regression, statisitcs, yat, and theplu67 }}} // of namespaces regression, yat, and theplu -
trunk/yat/statistics/Linear.h
r680 r681 1 #ifndef _theplu_yat_ statistics_regression_linear_2 #define _theplu_yat_ statistics_regression_linear_1 #ifndef _theplu_yat_regression_linear_ 2 #define _theplu_yat_regression_linear_ 3 3 4 4 // $Id$ … … 34 34 class vector; 35 35 } 36 namespace statistics {37 36 namespace regression { 38 37 … … 122 121 }; 123 122 124 }}} } // of namespaces regression,, yat statisitcs thep123 }}} // of namespaces regression, yat, and theplu 125 124 126 125 #endif -
trunk/yat/statistics/LinearWeighted.cc
r680 r681 30 30 namespace theplu { 31 31 namespace yat { 32 namespace statistics {33 32 namespace regression { 34 35 33 36 34 void LinearWeighted::fit(const utility::vector& x, … … 65 63 } 66 64 67 68 }}}} // of namespaces regression,, yat statisitcs thep 65 }}} // of namespaces regression, yat, and theplu -
trunk/yat/statistics/LinearWeighted.h
r680 r681 1 #ifndef _theplu_yat_ statistics_regression_linear_weighted_2 #define _theplu_yat_ statistics_regression_linear_weighted_1 #ifndef _theplu_yat_regression_linearweighted_ 2 #define _theplu_yat_regression_linearweighted_ 3 3 4 4 // $Id$ … … 34 34 class vector; 35 35 } 36 namespace statistics {37 36 namespace regression { 38 37 … … 130 129 }; 131 130 132 }}} } // of namespaces regression,, yat statisitcs thep131 }}} // of namespaces regression, yat, and theplu 133 132 134 133 #endif -
trunk/yat/statistics/Local.cc
r680 r681 33 33 namespace theplu { 34 34 namespace yat { 35 namespace statistics {36 35 namespace regression { 37 38 36 39 37 void Local::fit(const size_t step_size, const size_t nof_points) … … 41 39 if (step_size==0 || nof_points<3){ 42 40 // Peter to Jari, throw exception? 43 std::cerr << "theplu:: statistics::regression::Local "41 std::cerr << "theplu::regression::Local " 44 42 << "Parameters invalid. Fitting ignored." << std::endl; 45 43 return; … … 120 118 return os; 121 119 } 122 }}}} // of namespaces regression,, yat statisitcs thep 120 121 }}} // of namespaces regression, yat, and theplu -
trunk/yat/statistics/Local.h
r680 r681 1 #ifndef _theplu_yat_ statistics_regression_local_2 #define _theplu_yat_ statistics_regression_local_1 #ifndef _theplu_yat_regression_local_ 2 #define _theplu_yat_regression_local_ 3 3 4 4 // $Id$ … … 33 33 namespace theplu { 34 34 namespace yat { 35 namespace statistics {36 35 namespace regression { 37 36 … … 111 110 std::ostream& operator<<(std::ostream&, const Local& ); 112 111 113 114 }}}} // of namespaces regression,, yat statistics thep 112 }}} // of namespaces regression, yat, and theplu 115 113 116 114 #endif -
trunk/yat/statistics/MultiDimensional.cc
r680 r681 28 28 namespace theplu { 29 29 namespace yat { 30 namespace statistics {31 30 namespace regression { 32 31 … … 68 67 } 69 68 70 }}} } // of namespaces regression,, yat statisitcs thep69 }}} // of namespaces regression, yat, and theplu -
trunk/yat/statistics/MultiDimensional.h
r680 r681 1 #ifndef _theplu_yat_ statistics_regression_multidimensional_2 #define _theplu_yat_ statistics_regression_multidimensional_1 #ifndef _theplu_yat_regression_multidimensional_ 2 #define _theplu_yat_regression_multidimensional_ 3 3 4 4 // $Id$ … … 32 32 namespace theplu { 33 33 namespace yat { 34 namespace statistics {35 34 namespace regression { 36 35 … … 87 86 }; 88 87 89 90 }}}} // of namespaces regression,, yat statisitcs thep 88 }}} // of namespaces regression, yat, and theplu 91 89 92 90 #endif -
trunk/yat/statistics/MultiDimensionalWeighted.cc
r680 r681 30 30 namespace theplu { 31 31 namespace yat { 32 namespace statistics {33 32 namespace regression { 34 35 33 36 34 void MultiDimensionalWeighted::fit(const utility::matrix& x, … … 75 73 } 76 74 77 }}} } // of namespaces regression,, yat statisitcs thep75 }}} // of namespaces regression, yat, and theplu -
trunk/yat/statistics/MultiDimensionalWeighted.h
r680 r681 1 #ifndef _theplu_yat_ statistics_regression_multidimensional_weighted_2 #define _theplu_yat_ statistics_regression_multidimensional_weighted_1 #ifndef _theplu_yat_regression_multidimensionalweighted_ 2 #define _theplu_yat_regression_multidimensionalweighted_ 3 3 4 4 // $Id$ … … 32 32 namespace theplu { 33 33 namespace yat { 34 namespace statistics {35 34 namespace regression { 36 35 … … 88 87 }; 89 88 90 91 }}}} // of namespaces regression,, yat statisitcs thep 89 }}} // of namespaces regression, yat, and theplu 92 90 93 91 #endif -
trunk/yat/statistics/Naive.cc
r680 r681 33 33 namespace theplu { 34 34 namespace yat { 35 namespace statistics {36 35 namespace regression { 37 38 36 39 37 void Naive::fit(const utility::vector& x, const utility::vector& y) … … 59 57 } 60 58 61 62 }}}} // of namespaces regression,, yat statisitcs thep 59 }}} // of namespaces regression, yat, and theplu -
trunk/yat/statistics/Naive.h
r680 r681 1 #ifndef _theplu_yat_ statistics_regression_naive_2 #define _theplu_yat_ statistics_regression_naive_1 #ifndef _theplu_yat_regression_naive_ 2 #define _theplu_yat_regression_naive_ 3 3 4 4 // $Id$ … … 35 35 class vector; 36 36 } 37 namespace statistics {38 37 namespace regression { 39 38 … … 93 92 }; 94 93 95 96 }}}} // of namespaces regression,, yat statisitcs thep 94 }}} // of namespaces regression, yat, and theplu 97 95 98 96 #endif -
trunk/yat/statistics/NaiveWeighted.cc
r680 r681 29 29 namespace theplu { 30 30 namespace yat { 31 namespace statistics {32 31 namespace regression { 33 32 34 35 33 void NaiveWeighted::fit(const utility::vector& x, 36 const utility::vector& y,37 const utility::vector& w)34 const utility::vector& y, 35 const utility::vector& w) 38 36 { 39 37 AveragerWeighted a; … … 45 43 } 46 44 47 48 }}}} // of namespaces regression,, yat statisitcs thep 45 }}} // of namespaces regression, yat, and theplu -
trunk/yat/statistics/NaiveWeighted.h
r680 r681 1 #ifndef _theplu_yat_ statistics_regression_naive_weighted_2 #define _theplu_yat_ statistics_regression_naive_weighted_1 #ifndef _theplu_yat_regression_naiveweighted_ 2 #define _theplu_yat_regression_naiveweighted_ 3 3 4 4 // $Id$ … … 36 36 class vector; 37 37 } 38 namespace statistics {39 38 namespace regression { 40 39 … … 99 98 }; 100 99 101 102 }}}} // of namespaces regression,, yat statisitcs thep 100 }}} // of namespaces regression, yat, and theplu 103 101 104 102 #endif -
trunk/yat/statistics/OneDimensional.cc
r680 r681 26 26 namespace theplu { 27 27 namespace yat { 28 namespace statistics {29 28 namespace regression { 30 29 … … 48 47 } 49 48 50 }}} } // of namespaces regression,, yat statisitcs thep49 }}} // of namespaces regression, yat, and theplu -
trunk/yat/statistics/OneDimensional.h
r680 r681 1 #ifndef _theplu_yat_ statistics_regression_onedimensioanl_2 #define _theplu_yat_ statistics_regression_onedimensioanl_1 #ifndef _theplu_yat_regression_onedimensional_ 2 #define _theplu_yat_regression_onedimensional_ 3 3 4 4 // $Id$ … … 34 34 class vector; 35 35 } 36 37 namespace statistics {38 36 namespace regression { 39 37 … … 97 95 }; 98 96 99 }}} } // of namespaces regression,, yat statisitcs thep97 }}} // of namespaces regression, yat, and theplu 100 98 101 99 #endif -
trunk/yat/statistics/OneDimensionalWeighted.h
r680 r681 1 #ifndef _theplu_yat_ statistics_regression_onedimensioanlweighted_2 #define _theplu_yat_ statistics_regression_onedimensioanlweighted_1 #ifndef _theplu_yat_regression_onedimensioanlweighted_ 2 #define _theplu_yat_regression_onedimensioanlweighted_ 3 3 4 4 // $Id$ … … 32 32 class vector; 33 33 } 34 35 namespace statistics {36 34 namespace regression { 37 35 … … 90 88 }; 91 89 92 }}} } // of namespaces regression,, yat statisitcs thep90 }}} // of namespaces regression, yat, and theplu 93 91 94 92 #endif -
trunk/yat/statistics/Polynomial.cc
r680 r681 28 28 namespace theplu { 29 29 namespace yat { 30 namespace statistics {31 30 namespace regression { 32 33 31 34 32 void Polynomial::fit(const utility::vector& x, const utility::vector& y) … … 65 63 } 66 64 67 }}} } // of namespaces regression,, yat statisitcs thep65 }}} // of namespaces regression, yat, and theplu -
trunk/yat/statistics/Polynomial.h
r680 r681 1 #ifndef _theplu_yat_ statistics_regression_polynomial_2 #define _theplu_yat_ statistics_regression_polynomial_1 #ifndef _theplu_yat_regression_polynomial_ 2 #define _theplu_yat_regression_polynomial_ 3 3 4 4 // $Id$ … … 35 35 namespace theplu { 36 36 namespace yat { 37 namespace statistics {38 37 namespace regression { 39 38 … … 88 87 }; 89 88 90 91 }}}} // of namespaces regression,, yat statisitcs thep 89 }}} // of namespaces regression, yat, and theplu 92 90 93 91 #endif -
trunk/yat/statistics/PolynomialWeighted.cc
r680 r681 30 30 namespace theplu { 31 31 namespace yat { 32 namespace statistics {33 32 namespace regression { 34 35 33 36 34 void PolynomialWeighted::fit(const utility::vector& x, … … 72 70 } 73 71 74 }}} } // of namespaces regression,, yat statisitcs thep72 }}} // of namespaces regression, yat, and theplu -
trunk/yat/statistics/PolynomialWeighted.h
r680 r681 1 #ifndef _theplu_yat_ statistics_regression_polynomial_weighted_2 #define _theplu_yat_ statistics_regression_polynomial_weighted_1 #ifndef _theplu_yat_regression_polynomialweighted_ 2 #define _theplu_yat_regression_polynomialweighted_ 3 3 4 4 // $Id$ … … 33 33 namespace theplu { 34 34 namespace yat { 35 namespace statistics {36 35 namespace regression { 37 36 … … 91 90 }; 92 91 93 94 }}}} // of namespaces regression,, yat statisitcs thep 92 }}} // of namespaces regression, yat, and theplu 95 93 96 94 #endif
Note: See TracChangeset
for help on using the changeset viewer.