blob: 142f6ba5d8be9cfa939328ace3a138848db6713d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
#ifndef POLY_MODEL_H_
#define POLY_MODEL_H_
#define OPT_HEADER
#include <core/fitter.hpp>
#include <cmath>
#include <sstream>
#include <cassert>
namespace opt_utilities
{
template <typename T,int n>
class poly1d
:public model<T,T,std::vector<T>,std::string>
{
private:
model<T,T,std::vector<T> >* do_clone()const
{
return new poly1d<T,n>(*this);
}
public:
poly1d()
{
assert(n>=0);
for(int i=0;i<=n;++i)
{
std::ostringstream ostr;
ostr<<"a"<<i;
this->push_param_info(param_info<std::vector<T> >(ostr.str().c_str(),1));
}
}
public:
T do_eval(const T& x,const std::vector<T>& param)
{
// return x*get_element(param,0)+get_element(param,1);
T result(0);
for(int i=0;i<=n;++i)
{
T xn(1);
for(int j=0;j<i;++j)
{
xn*=x;
}
result+=get_element(param,i)*xn;
}
return result;
}
private:
std::string do_to_string()const
{
std::ostringstream ostr;
ostr<<n<<"-order polynorminal model\n";
for(int i=0;i<n;++i)
{
ostr<<"a"<<i<<"*x^"<<i<<"+";
}
ostr<<"a"<<n<<"*x^"<<n;
return ostr.str();
}
};
}
#endif
//EOF
|