root/applications/bdmtoolbox/mex/estimator.cpp @ 963

Revision 944, 6.5 kB (checked in by smidl, 14 years ago)

Doc + new examples

  • Property svn:eol-style set to native
Line 
1/*!
2\file
3\brief Application Estimator
4
5The general task of estimation is defined on the following scheme:
6\dot
7digraph estimation{
8        node [shape=box];
9        {rank="same"; "Data Source"; "Bayesian Model"}
10        "Data Source" -> "Bayesian Model" [label="data"];
11        "Bayesian Model" -> "Result Logger" [label="estimated\n statistics"];
12        "Data Source" -> "Result Logger" [label="Simulated\n data"];
13}
14\enddot
15
16Here,
17\li Data Source is an object (class DS) providing sequential data, \f$ [d_1, d_2, \ldots d_t] \f$.
18\li Bayesian Model is an object (class BM) performing Bayesian filtering,
19\li Result Logger is an object (class logger) dedicated to storing important data from the experiment.
20
21\section  cmd Command-line usage
22Execute command:
23\code
24$> estimator config_file.cfg
25\endcode
26
27Full description of the experiment is in the file config_file.cfg which is expected to have the following structure:
28\code
29system = {type = "DS_offspring", ...};      // definition of a data source
30estimator = {type = "BM_offspring", ...};   // definition of an estimator
31logger = {type = "logger_type",...};        // definition of a logger
32experiment = {ndat = 11000; };              // definition of number of data records
33\endcode
34
35The above description must be specialized to specific classes. See, \subpage arx_ui how to do it for estimation of an ARX model.
36
37\section ex Matlab usage
38Execute command:
39\code
40>> estimator('config_file.cfg');
41\endcode
42when using loggers storing results on hard drives, and
43\code
44>> Res=estimator('config_file.cfg');
45\endcode
46when using logger of the type \c "mex_logger". The results will be stored in structure \c M.
47
48 */
49
50#include <estim/arx_ext.h>
51#include <stat/emix.h>
52#include <base/datasources.h>
53#include <base/loggers.h>
54#include <estim/particles.h>
55#include <estim/kalman.h>
56
57//#include "mex_datasource.h"
58
59using namespace bdm;
60
61#ifdef MEX
62#include <itpp/itmex.h>
63#include <mex/mex_BM.h>
64#include <mex/mex_logger.h>
65#include <mex/mex_datasource.h>
66#include <mex/mex_function.h>
67
68void mexFunction ( int n_output, mxArray *output[], int n_input, const mxArray *input[] ) {
69        // Check the number of inputs and output arguments
70        if ( n_input<2 ) mexErrMsgTxt ( "Usage:\n"
71                                                "result=estimator(system, estimators, experiment, logger)\n"
72                                                "  system     = struct('class','datasource',...);  % Estimated system\n"
73                                                "  estimators = {struct('class','estimator',...),  % Estimators\n"
74                                                "                struct('class','estimator',...),...} \n"
75                                                "  === optional ==="
76                                                "  experiment = struct('ndat',10);                 % number of data in experiment, full length of finite datasources, 10 otherwise \n"
77                                                "  logger     = struct('class','mexlogger');       % How to store results, default=mexlog, i.e. matlab structure\n\n"
78                                                "see documentation of classes datasource, BM, and mexlogger and their offsprings in BDM." );
79
80        RV::clear_all();
81        //CONFIG
82        UImxArray Cfg;
83        try {
84                Cfg.addGroup ( input[0],"system" );
85                Cfg.addList ( input[1],"estimators" );
86                if ( n_input>2 ) {
87                        Cfg.addGroup ( input[2],"experiment" );
88                }
89                if ( n_input>3 ) {
90                        Cfg.addGroup ( input[3],"logger" );
91                }
92        } catch ( SettingException e ) {
93                it_error ( "error: "+string ( e.getPath() ) );
94        }
95
96        //DBG
97        Cfg.writeFile ( "estimator.cfg" );
98
99#else
100int main ( int argc, char* argv[] ) {
101        const char *fname;
102        if ( argc>1 ) {
103                fname = argv[1];
104        } else {
105                fname="estimator.cfg";
106        }
107        UIFile Cfg ( fname );
108#endif
109
110        shared_ptr<DS> Ds = UI::build<DS> ( Cfg, "system" );
111        Array<shared_ptr<BM> > Es;
112        UI::get ( Es,Cfg, "estimators" );
113        int Ndat=10;
114        if ( Cfg.exists ( "experiment" ) ) {
115                if (  UI::get(Ndat, Cfg.getRoot()["experiment"],"ndat" ) ) {
116                        bdm_assert ( Ndat<=Ds->max_length(), "Data source has less data then required" );
117                };
118        } else {
119                if ( Ds->max_length() < std::numeric_limits< int >::max() ) {
120                        Ndat=Ds->max_length();
121                }
122                ;// else Ndat=10;
123        }
124        shared_ptr<logger> L = UI::build<logger> ( Cfg, "logger",UI::optional );
125        if ( !L ) {
126#ifdef MEX
127                //mex logger has only from_setting constructor - we  have to fill it...
128                L=new mexlog ( Ndat );
129#else
130                L=new stdlog();
131#endif
132        }
133
134        Ds->log_register ( *L, "DS" );
135        string Ename;
136        Setting &S=Cfg;
137        for ( int i=0; i<Es.length(); i++ ) {
138                if (!UI::get ( Ename, S["estimators"][i], "name" ,UI::optional)){
139                        Ename="Est"+num2str ( i );
140                }
141                if (!Es(i)->posterior().log_level[epdf::logmean]){
142                        const_cast<epdf&>(Es (i) ->posterior()).log_level[epdf::logmean] =true;
143                }               
144                Es ( i )->log_register ( *L,Ename ); // estimate
145        }
146        L->init();
147
148        vec dt=zeros ( Ds->_drv()._dsize() );   //data variable
149        Array<datalink*> Dls ( Es.length() );
150        Array<datalink*> Dlsc ( Es.length() );
151        Array<datalink_buffered*> Dls_buf (0);
152        for ( int i=0; i<Es.length(); i++ ) {
153                //connect actual data
154                Dls ( i ) = new datalink ( Es ( i )->_yrv(),Ds->_drv() ); //datalink between a datasource and estimator
155                //connect data in condition
156                if (Es ( i )->_rvc().mint()<0){ 
157                        //delayed values are required
158                       
159                        //create delayed dl
160                        int ith_buf=Dls_buf.size();
161                        Dls_buf.set_size( ith_buf + 1, true);
162                        Dls_buf(ith_buf) = new datalink_buffered(); 
163                        //add dl to list of buffered DS
164                        Dlsc(i) = Dls_buf(ith_buf);
165                        Dlsc(i)->set_connection ( Es ( i )->_rvc(),Ds->_drv() ); //datalink between a datasource and estimator
166                       
167                } else {
168                        Dlsc ( i ) = new datalink ( Es ( i )->_rvc(),Ds->_drv() ); //datalink between a datasource and estimator
169                }
170        }
171
172        for ( int tK=0;tK<Ndat;tK++ ) {
173                Ds->getdata ( dt );                                     // read data
174                Ds->log_write ( );
175
176                for ( int i=0; i<Es.length(); i++ ) {
177                        if (tK + Es ( i )->_rvc().mint() > 0 ) {
178                                Es ( i )->bayes ( Dls ( i )->pushdown ( dt ), Dlsc(i) ->pushdown(dt) );         // update estimates
179                        }
180                        Es ( i )->log_write ();
181                }
182               
183                L->step();
184                Ds->step();                                                     // simulator step
185                //update buffered fdat links
186                for (int i=0; i<Dls_buf.length(); i++){
187                        Dls_buf(i)->store_data(dt);
188                }
189                       
190        }
191
192        L->finalize();
193        // ------------------ End of routine -----------------------------
194
195#ifdef MEX
196        mexlog* mL=dynamic_cast<mexlog*> ( L.get() );
197
198        if ( mL ) { // user wants output!!
199                if ( n_output<1 ) mexErrMsgTxt ( "Wrong number of output variables!" );
200                output[0] = mL->toCell();
201                if (n_output>1) {
202                        mL->_setting_conf().setAutoConvert(true);
203                        output[1]= UImxArray::create_mxArray(mL->_setting_conf().getRoot());
204                }
205        }
206#endif
207        for (int i=0;i<Dls.length(); i++){delete Dls(i); delete Dlsc(i);}
208}
Note: See TracBrowser for help on using the browser.