aboutsummaryrefslogtreecommitdiffstats
path: root/distributions/kmm_component.hpp
blob: 0e77508c5953ff62c543b16c399b1cc38fd8c67d (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
/**
   \file kmm_component.hpp
   \brief rpresents a distribution composed of more than one kmm_components
   \author Junhua Gu
 */


#ifndef KMM_COMPONENT_MODEL_H_
#define KMM_COMPONENT_MODEL_H_
#define OPT_HEADER
#include <core/fitter.hpp>
#include <cmath>
#include <misc/optvec.hpp>
#include <sstream>
#include <iostream>



namespace opt_utilities
{
  template <typename T>
  class kmm_component
    :public model<optvec<T>,optvec<T>,optvec<T>,std::string>
  {
  private:
    std::vector<model<optvec<T>,optvec<T>,optvec<T>,std::string>*> components;
    std::vector<int> weight_num;
  private:
    kmm_component* do_clone()const
    {
      return new kmm_component<T>(*this);
    }

    const char* do_get_type_name()const
    {
      return "Multi-distribution";
    }
  public:
    kmm_component()
    {
      //this->push_param_info(param_info<optvec<T> >("x0",0));
      //this->push_param_info(param_info<optvec<T> >("sigma",1));
    }

    kmm_component(const kmm_component& rhs)
    {
      for(int i=0;i<rhs.components.size();++i)
	{
	  if(i>=1)
	    {
	      add_component(*rhs.components[i],rhs.get_param_info(rhs.weight_num[i-1]).get_value());
	    }
	  else
	    {
	      add_component(*rhs.components[i]);
	    }
	}
      for(int i=0;i<rhs.get_num_params();++i)
	{
	  set_param_info(rhs.get_param_info(i));
	}
      
    }

    kmm_component& operator=(const kmm_component& rhs)
    {
      if(this==&rhs)
	{
	  return rhs;
	}
      for(int i=0;i<components.size();++i)
	{
	  components[i]->destroy();
	}
      components.clear();
      for(int i=0;i<rhs.components.size();++i)
	{
	  add_component(*rhs.components[i]);
	}
      for(int i=0;i<rhs.get_num_params();++i)
	{
	  set_param_info(rhs.get_param_info(i));
	}
      
    }

    ~kmm_component()
    {
      for(int i=0;i<components.size();++i)
	{
	  components[i]->destroy();
	}
    }


  public:
    void add_component(const model<optvec<T>,optvec<T>,optvec<T>,std::string>& m,const T& w=0)
    {
      int morder=components.size();
      components.push_back(m.clone());
      std::ostringstream oss;
      oss<<morder;
      std::string smorder=oss.str();
      if(components.size()>1)
	{
	  param_info<optvec<T>,std::string> p1(std::string("_w")+smorder,w);	  
	  this->push_param_info(p1);
	  weight_num.push_back(this->get_num_params()-1);
	}
      int np=m.get_num_params();
      for(int i=0;i<np;++i)
	{
	  param_info<optvec<T>,std::string> p(m.get_param_info(i));
	  param_info<optvec<T>,std::string> p1(p.get_name()+smorder,p.get_value());
	  this->push_param_info(p1);
	}
    }

    optvec<T> convert_unit_sph(const optvec<T>& p)
    {
      int ndim=p.size()+1;
      optvec<double> result(ndim);
      result[0]=1;
      for(int i=0;i<p.size();++i)
	{
	  for(int j=0;j<=i;++j)
	    {
	      result[j]*=cos(p[i]);
	    }
	  result[i+1]=sin(p[i]);
	}
      for(int i=0;i<result.size();++i)
	{
	  result[i]=result[i]*result[i];
	}
      return result;
    }

    
    optvec<T> do_eval(const optvec<T>& x,const optvec<T>& param)
    {
      T result(0);
      optvec<T> weight_angle;
      for(int i=0;i<weight_num.size();++i)
	{
	  weight_angle.push_back(param[weight_num[i]]);
	}
      optvec<T> weight(convert_unit_sph(weight_angle));
      
      int pnum=0;
      for(int i=0;i<components.size();++i)
	{
	  T temp_result=0;
	  optvec<T> p(components[i]->get_num_params());
	  for(int j=0;j<p.size();++j)
	    {
	      p[j]=param[pnum++];
	    }
	  result+=(components[i]->eval(x,p)[0]*weight[i]);
	  ++pnum;
	}
      optvec<T> result1(1);
      result1[0]=result;;
      return result1;
    }

    optvec<T> eval_unsumed(const optvec<T>& x,const optvec<T>& param)
    {
      optvec<T> weight_angle;
      for(int i=0;i<weight_num.size();++i)
	{
	  weight_angle.push_back(param[weight_num[i]]);
	}
      optvec<T> weight(convert_unit_sph(weight_angle));
      optvec<T> result(components.size());
      int pnum=0;
      for(int i=0;i<components.size();++i)
	{
	  T temp_result=0;
	  optvec<T> p(components[i]->get_num_params());
	  for(int j=0;j<p.size();++j)
	    {
	      p[j]=param[pnum++];
	    }
	  result[i]=(components[i]->eval(x,p)[0]*weight[i]);
	  ++pnum;
	}
      
      return result;
    }

    

  private:
    std::string do_get_information()const
    {
      return "";
    }
  };
}



#endif
//EOF