#include <libPF.h>
Public Member Functions | |
MPF (const RV &rvlin, const RV &rvpf, mpdf &par0, mpdf &obs0, int n, const BM_T &BMcond0) | |
Default constructor. | |
void | bayes (const vec &dt) |
Incremental Bayes rule. | |
epdf & | _epdf () |
Returns a pointer to the epdf representing posterior density on parameters. Use with care! | |
void | set_est (const epdf &epdf0) |
Set postrior of rvc to samples from epdf0. Statistics of Bms are not re-computed! Use only for initialization! | |
void | bayes (mat Dt) |
Batch Bayes rule (columns of Dt are observations). | |
const RV & | _rv () const |
access function | |
double | _ll () const |
access function | |
Protected Attributes | |
int | n |
number of particles; | |
eEmp | est |
posterior density | |
vec & | _w |
pointer into eEmp | |
Array< vec > & | _samples |
pointer into eEmp | |
mpdf & | par |
Parameter evolution model. | |
mpdf & | obs |
Observation model. | |
RV | rv |
Random variable of the posterior. | |
double | ll |
Logarithm of marginalized data likelihood. | |
bool | evalll |
If true, the filter will compute likelihood of the data record and store it in ll . Set to false if you want to save time. | |
Classes | |
class | mpfepdf |
internal class for MPDF providing composition of eEmp with external components |
Trivial version: proposal $=$ parameter evolution, observation model is not used. (it is assumed to be part of BM).
void MPF< BM_T >::bayes | ( | const vec & | dt | ) | [inline, virtual] |