aboutsummaryrefslogtreecommitdiffstats
path: root/vmodels/lin1d.hpp
diff options
context:
space:
mode:
authorastrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675>2009-12-17 17:01:15 +0000
committerastrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675>2009-12-17 17:01:15 +0000
commit4170b13f464439ab97efadb210dab0d749fa4b42 (patch)
treef6d31514c19a9a015c4d22477f5a3fb8bccd250b /vmodels/lin1d.hpp
parenteeafd6e502bc60da664de3cf0eb9251f349df228 (diff)
downloadopt-utilities-4170b13f464439ab97efadb210dab0d749fa4b42.tar.bz2
rename vmodel to vmodels
git-svn-id: file:///home/svn/opt_utilities@103 ed2142bd-67ad-457f-ba7c-d818d4011675
Diffstat (limited to 'vmodels/lin1d.hpp')
-rw-r--r--vmodels/lin1d.hpp58
1 files changed, 58 insertions, 0 deletions
diff --git a/vmodels/lin1d.hpp b/vmodels/lin1d.hpp
new file mode 100644
index 0000000..8ca8074
--- /dev/null
+++ b/vmodels/lin1d.hpp
@@ -0,0 +1,58 @@
+#ifndef VLINEAR_MODEL_H_
+#define VLINEAR_MODEL_H_
+#define OPT_HEADER
+#include <core/fitter.hpp>
+#include <misc/optvec.hpp>
+#include <cmath>
+
+namespace opt_utilities
+{
+ template <typename T>
+ class lin1d
+ :public model<optvec<T>,optvec<T>,optvec<T>,std::string>
+ {
+ typedef optvec<T> Tv;
+ private:
+ lin1d<T>* do_clone()const
+ {
+ return new lin1d<T>(*this);
+ }
+
+ const char* do_get_type_name()const
+ {
+ return "1d linear model";
+ }
+ public:
+ lin1d()
+ {
+ this->push_param_info(param_info<Tv>("k",1));
+ this->push_param_info(param_info<Tv>("b",0));
+ }
+
+ public:
+ Tv do_eval(const Tv& x,const Tv& param)
+ {
+ Tv result(x.size());
+
+ //return x*get_element(param,0)+get_element(param,1);
+ for(size_t i=0;i!=x.size();++i)
+ {
+ result[i]=param[0]*x[i]+param[1];
+ }
+ return result;
+ }
+
+ private:
+ std::string do_get_information()const
+ {
+ return "<math><mrow> <mtext>f(x;k,b)=k x+b</mtext> \
+ </mrow> \
+</math>";
+ }
+ };
+}
+
+
+
+#endif
+//EOF