|
Bayesian Filtering Library Generated from SVN r
|
#include <measurementmodel.h>
Public Member Functions | |
| MeasurementModel (ConditionalPdf< MeasVar, StateVar > *Measurementpdf=NULL) | |
| Constructor. | |
| virtual | ~MeasurementModel () |
| Destructor. | |
| int | MeasurementSizeGet () const |
| Get Measurement Size. | |
| bool | SystemWithoutSensorParams () const |
| Number of Conditional Arguments. | |
| ConditionalPdf< MeasVar, StateVar > * | MeasurementPdfGet () |
| Get the MeasurementPDF. | |
| void | MeasurementPdfSet (ConditionalPdf< MeasVar, StateVar > *pdf) |
| Set the MeasurementPDF. | |
| MeasVar | Simulate (const StateVar &x, const StateVar &s, const SampleMthd sampling_method=SampleMthd::DEFAULT, void *sampling_args=NULL) |
| Simulate the Measurement, given a certain state, and an input. | |
| MeasVar | Simulate (const StateVar &x, const SampleMthd sampling_method=SampleMthd::DEFAULT, void *sampling_args=NULL) |
| Simulate the system (no input system) | |
| Probability | ProbabilityGet (const MeasVar &z, const StateVar &x, const StateVar &s) |
| Get the probability of a certain measurement. | |
| Probability | ProbabilityGet (const MeasVar &z, const StateVar &x) |
| Get the probability of a certain measurement. | |
Protected Attributes | |
| ConditionalPdf< MeasVar, StateVar > * | _MeasurementPdf |
| ConditionalPdf representing | |
| bool | _systemWithoutSensorParams |
| System with no sensor params?? | |
Template class representing all possible (continu and discrete) Measurement Models




Definition at line 53 of file measurementmodel.h.
| MeasurementModel | ( | ConditionalPdf< MeasVar, StateVar > * | Measurementpdf = NULL | ) |
Constructor.
| Measurementpdf | ConditionalPdf<MeasVar,StateVar> representing |
| void MeasurementPdfSet | ( | ConditionalPdf< MeasVar, StateVar > * | ) |
Set the MeasurementPDF.
| a pointer to the measurement pdf |
| Probability ProbabilityGet | ( | const MeasVar & | z, |
| const StateVar & | x | ||
| ) |
Get the probability of a certain measurement.
(measurement independent of input) gived a certain state and input
| z | the measurement value |
| x | x current state of the system |
| Probability ProbabilityGet | ( | const MeasVar & | z, |
| const StateVar & | x, | ||
| const StateVar & | s | ||
| ) |
Get the probability of a certain measurement.
given a certain state and input
| z | the measurement value |
| x | current state of the system |
| s | the sensor param value |
| MeasVar Simulate | ( | const StateVar & | x, |
| const SampleMthd | sampling_method = SampleMthd::DEFAULT, |
||
| void * | sampling_args = NULL |
||
| ) |
Simulate the system (no input system)
| x | current state of the system |
| sampling_method | the sampling method to be used while sampling from the Conditional Pdf describing the system (if not specified = DEFAULT) |
| sampling_args | Sometimes a sampling method can have some extra parameters (eg mcmc sampling) |
| MeasVar Simulate | ( | const StateVar & | x, |
| const StateVar & | s, | ||
| const SampleMthd | sampling_method = SampleMthd::DEFAULT, |
||
| void * | sampling_args = NULL |
||
| ) |
Simulate the Measurement, given a certain state, and an input.
| x | current state of the system |
| s | sensor parameter |
| sampling_method | the sampling method to be used while sampling from the Conditional Pdf describing the system (if not specified = DEFAULT) |
| sampling_args | Sometimes a sampling method can have some extra parameters (eg mcmc sampling) |
|
protected |
ConditionalPdf representing 
Definition at line 62 of file measurementmodel.h.
|
protected |
System with no sensor params??
Definition at line 65 of file measurementmodel.h.