Changeset 951

Show
Ignore:
Timestamp:
05/18/10 22:28:15 (14 years ago)
Author:
smidl
Message:

Correction to particle filters

Files:
3 modified

Legend:

Unmodified
Added
Removed
  • applications/bdmtoolbox/tutorial/userguide/frg_estim.m

    r950 r951  
    6060 
    6161 
    62 for i=1:E.n 
    63      
  • library/bdm/estim/particles.h

    r950 r951  
    104104                } 
    105105                void validate(){ 
    106                         est_emp.set_point(zeros(par->dimension())); 
     106                        if (est_emp.point.length()!=par->dimension()) 
     107                                est_emp.set_point(zeros(par->dimension())); 
    107108                        est.validate(); 
    108109                         
  • library/bdm/stat/exp_family.h

    r948 r951  
    18891889/*! Dirac delta function distribution */ 
    18901890class dirac: public epdf{ 
    1891         protected:  
     1891        public:  
    18921892                vec point; 
    18931893        public: