From 9fb6a64e135115b0af416a9b95afe7c7ff79380f Mon Sep 17 00:00:00 2001 From: astrojhgu Date: Sun, 17 Oct 2010 17:34:47 +0000 Subject: git-svn-id: file:///home/svn/opt_utilities@138 ed2142bd-67ad-457f-ba7c-d818d4011675 --- distributions/component.hpp | 179 ++++++++++++++++++++++++++++++++++++++ distributions/normed_dgauss1d.hpp | 75 ++++++++++++++++ distributions/normed_gauss1d.hpp | 58 ++++++++++++ 3 files changed, 312 insertions(+) create mode 100644 distributions/component.hpp create mode 100644 distributions/normed_dgauss1d.hpp create mode 100644 distributions/normed_gauss1d.hpp (limited to 'distributions') diff --git a/distributions/component.hpp b/distributions/component.hpp new file mode 100644 index 0000000..b595cab --- /dev/null +++ b/distributions/component.hpp @@ -0,0 +1,179 @@ +#ifndef COMPONENT_MODEL_H_ +#define COMPONENT_MODEL_H_ +#define OPT_HEADER +#include +#include +#include +#include +#include +/* + *Represents a distribution composed of more than one components + */ + + +namespace opt_utilities +{ + template + class component + :public model,optvec,optvec,std::string> + { + private: + std::vector,optvec,optvec,std::string>*> components; + std::vector weight_num; + private: + component* do_clone()const + { + return new component(*this); + } + + const char* do_get_type_name()const + { + return "Multi-distribution"; + } + public: + component() + { + //this->push_param_info(param_info >("x0",0)); + //this->push_param_info(param_info >("sigma",1)); + } + + component(const component& rhs) + { + for(int i=0;idestroy(); + } + components.clear(); + for(int i=0;idestroy(); + } + } + + + public: + void add_component(const model,optvec,optvec,std::string>& m,const T& w=0) + { + int morder=components.size(); + components.push_back(m.clone()); + std::ostringstream oss; + oss<1) + { + param_info,std::string> p1(std::string("_w")+smorder,w); + this->push_param_info(p1); + //std::cout<get_num_params()<get_num_params()-1); + } + + int np=m.get_num_params(); + for(int i=0;i,std::string> p(m.get_param_info(i)); + param_info,std::string> p1(p.get_name()+smorder,p.get_value()); + this->push_param_info(p1); + if(this->get_num_params()==1) + { + std::cout<<"origin:"<get_param_info(0).get_value()<get_num_params()< convert_unit_sph(const optvec& p) + { + int ndim=p.size()+1; + optvec result(ndim); + result[0]=1; + for(int i=0;i do_eval(const optvec& x,const optvec& param) + { + T result(0); + optvec weight_angle; + for(int i=0;i weight(convert_unit_sph(weight_angle)); + + int pnum=0; + //std::cout< p(components[i]->get_num_params()); + for(int j=0;jeval(x,p)[0]*weight[i]); + ++pnum; + } + optvec result1(1); + result1[0]=result;; + return result1; + } + + private: + std::string do_get_information()const + { + return ""; + } + }; +} + + + +#endif +//EOF diff --git a/distributions/normed_dgauss1d.hpp b/distributions/normed_dgauss1d.hpp new file mode 100644 index 0000000..4060fa6 --- /dev/null +++ b/distributions/normed_dgauss1d.hpp @@ -0,0 +1,75 @@ +#ifndef NDGAUSS_MODEL_H_ +#define NDGAUSS_MODEL_H_ +#define OPT_HEADER +#include +#include +#include + +namespace opt_utilities +{ + template + class normed_dgauss1d + :public model,optvec,optvec,std::string> + { + private: + normed_dgauss1d* do_clone()const + { + return new normed_dgauss1d(*this); + } + + const char* do_get_type_name()const + { + return "1d double normed gaussian"; + } + public: + normed_dgauss1d() + { + this->push_param_info(param_info >("x01",0)); + this->push_param_info(param_info >("sigma1",1)); + this->push_param_info(param_info >("x02",0.1)); + this->push_param_info(param_info >("sigma2",1)); + this->push_param_info(param_info >("theta",1)); + } + + + public: + optvec do_eval(const optvec& x,const optvec& param) + { + const double pi=3.14159265358979323846; + T x01=get_element(param,0); + T sigma1=get_element(param,1); + T x02=get_element(param,2); + T sigma2=get_element(param,3); + T theta=get_element(param,4); + if(sigma1*sigma1::epsilon()) + { + sigma1=std::numeric_limits::epsilon(); + } + if(sigma2*sigma2::epsilon()) + { + sigma2=std::numeric_limits::epsilon(); + } + T N1=1/sqrt(sigma1*sigma1*pi*2); + T N2=1/sqrt(sigma2*sigma2*pi*2); + + optvec y1=(x-x01)/sigma1; + optvec y2=(x-x02)/sigma2; + + T r1=sin(theta); + T r2=cos(theta); + + return r1*r1*N1*exp(-y1*y1/2.)+r2*r2*N2*exp(-y2*y2/2.);; + } + + private: + std::string do_get_information()const + { + return ""; + } + }; +} + + + +#endif +//EOF diff --git a/distributions/normed_gauss1d.hpp b/distributions/normed_gauss1d.hpp new file mode 100644 index 0000000..09f5494 --- /dev/null +++ b/distributions/normed_gauss1d.hpp @@ -0,0 +1,58 @@ +#ifndef NGAUSS_MODEL_H_ +#define NGAUSS_MODEL_H_ +#define OPT_HEADER +#include +#include +#include + +namespace opt_utilities +{ + template + class normed_gauss1d + :public model,optvec,optvec,std::string> + { + private: + normed_gauss1d* do_clone()const + { + return new normed_gauss1d(*this); + } + + const char* do_get_type_name()const + { + return "1d normed gaussian"; + } + public: + normed_gauss1d() + { + this->push_param_info(param_info >("x0",0)); + this->push_param_info(param_info >("sigma",1)); + } + + + public: + optvec do_eval(const optvec& x,const optvec& param) + { + const double pi=3.14159265358979323846; + T x0=get_element(param,0); + T sigma=get_element(param,1); + if(sigma*sigma::epsilon()) + { + sigma=std::numeric_limits::epsilon(); + } + T N=1/sqrt(sigma*sigma*pi*2); + optvec y=(x-x0)/sigma; + return N*exp(-y*y/2.); + } + + private: + std::string do_get_information()const + { + return ""; + } + }; +} + + + +#endif +//EOF -- cgit v1.2.2