From 36076e63361d7c3d010f673d267793797de122b8 Mon Sep 17 00:00:00 2001 From: astrojhgu Date: Tue, 17 Nov 2009 17:08:23 +0000 Subject: git-svn-id: file:///home/svn/opt_utilities@96 ed2142bd-67ad-457f-ba7c-d818d4011675 --- statistics/chisq.hpp | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 50 insertions(+), 1 deletion(-) (limited to 'statistics') diff --git a/statistics/chisq.hpp b/statistics/chisq.hpp index 54826d5..f9c2c22 100644 --- a/statistics/chisq.hpp +++ b/statistics/chisq.hpp @@ -8,6 +8,7 @@ #include #include #include +#include #include using std::cerr;using std::endl; @@ -205,7 +206,55 @@ namespace opt_utilities return result; } }; -#endif +#endif + + template + class chisq + :public statistic,optvec,Tp,Ts,Tstr> + { + private: + bool verb; + int n; + + typedef optvec Tx; + typedef optvec Ty; + statistic* do_clone()const + { + // return const_cast*>(this); + return new chisq(*this); + } + + const char* do_get_type_name()const + { + return "chi^2 statistic"; + } + + public: + void verbose(bool v) + { + verb=v; + } + public: + chisq() + :verb(false) + {} + + + + Ts do_eval(const Tp& p) + { + Ts result(0); + for(int i=(this->get_data_set()).size()-1;i>=0;--i) + { + Ty chi=(this->get_data_set().get_data(i).get_y()-eval_model(this->get_data_set().get_data(i).get_x(),p))/this->get_data_set().get_data(i).get_y_upper_err(); + result+=sum(chi*chi); + + } + return result; + } + }; + + } #endif -- cgit v1.2.2