/** \file lin1d.hpp \brief 1d linear model \author Junhua Gu */ #ifndef LINEAR_MODEL_H_ #define LINEAR_MODEL_H_ #define OPT_HEADER #include #include #include namespace opt_utilities { template class lin1d :public model,std::string> ,public pre_estimatable,std::string> { private: model >* do_clone()const { return new lin1d(*this); } const char* do_get_type_name()const { return "1d linear model"; } public: lin1d() { this->push_param_info(param_info >("k",1)); this->push_param_info(param_info >("b",0)); } public: T do_eval(const T& x,const std::vector& param) { return x*get_element(param,0)+get_element(param,1); } private: std::string do_get_information()const { return " f(x;k,b)=k x+b \ \ "; } }; } #endif //EOF