From 28fcd862c8831dd4e29f744d162f9181a6e14ac8 Mon Sep 17 00:00:00 2001 From: astrojhgu Date: Thu, 14 Oct 2010 17:32:33 +0000 Subject: git-svn-id: file:///home/svn/opt_utilities@137 ed2142bd-67ad-457f-ba7c-d818d4011675 --- vmodels/normed_dgauss1d.hpp | 75 +++++++++++++++++++++++++++++++++++++++++++++ vmodels/normed_gauss1d.hpp | 58 +++++++++++++++++++++++++++++++++++ 2 files changed, 133 insertions(+) create mode 100644 vmodels/normed_dgauss1d.hpp create mode 100644 vmodels/normed_gauss1d.hpp (limited to 'vmodels') diff --git a/vmodels/normed_dgauss1d.hpp b/vmodels/normed_dgauss1d.hpp new file mode 100644 index 0000000..4060fa6 --- /dev/null +++ b/vmodels/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/vmodels/normed_gauss1d.hpp b/vmodels/normed_gauss1d.hpp new file mode 100644 index 0000000..c95b324 --- /dev/null +++ b/vmodels/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