Class for discrete System Models. More...
#include <discretesystemmodel.h>
Public Member Functions | |
DiscreteSystemModel (DiscreteConditionalPdf *systempdf=NULL) | |
Constructor. More... | |
DiscreteSystemModel (const DiscreteSystemModel &) | |
Copy constructor. More... | |
unsigned int | NumStatesGet () const |
Get the number of discrete states. More... | |
virtual | ~DiscreteSystemModel () |
Destructor. More... | |
Public Member Functions inherited from BFL::SystemModel< int > | |
Probability | ProbabilityGet (const int &x_k, const int &x_kminusone, const int &u) |
Get the probability of arriving in a next state. More... | |
Probability | ProbabilityGet (const int &x_k, const int &x_kminusone) |
Get the probability of arriving in a next state. More... | |
int | Simulate (const int &x, const int &u, int sampling_method=DEFAULT, void *sampling_args=NULL) |
Simulate the system. More... | |
int | Simulate (const int &x, int sampling_method=DEFAULT, void *sampling_args=NULL) |
Simulate the system (no input system) More... | |
int | StateSizeGet () const |
Get State Size. More... | |
SystemModel (ConditionalPdf< int, int > *systempdf=NULL) | |
Constructor. More... | |
ConditionalPdf< int, int > * | SystemPdfGet () |
Get the SystemPDF. More... | |
void | SystemPdfSet (ConditionalPdf< int, int > *pdf) |
Set the SystemPDF. More... | |
bool | SystemWithoutInputs () const |
Has the system inputs or not. More... | |
virtual | ~SystemModel () |
Destructor. More... | |
Additional Inherited Members | |
Protected Attributes inherited from BFL::SystemModel< int > | |
ConditionalPdf< int, int > * | _SystemPdf |
ConditionalPdf representing . More... | |
bool | _systemWithoutInputs |
System with no inputs? More... | |
Class for discrete System Models.
Class representing discrete System Models, ie. System Models for which BOTH states and inputs are discrete variables!
Definition at line 30 of file discretesystemmodel.h.
BFL::DiscreteSystemModel::DiscreteSystemModel | ( | DiscreteConditionalPdf * | systempdf = NULL | ) |
Constructor.
systempdf | ConditionalPdf<int> representing P(X_k | X_{k-1}, U_{k}) |
Definition at line 23 of file discretesystemmodel.cpp.
|
virtual |
Destructor.
Definition at line 26 of file discretesystemmodel.cpp.
BFL::DiscreteSystemModel::DiscreteSystemModel | ( | const DiscreteSystemModel & | model | ) |
Copy constructor.
Definition at line 28 of file discretesystemmodel.cpp.
unsigned int BFL::DiscreteSystemModel::NumStatesGet | ( | ) | const |
Get the number of discrete states.
Definition at line 31 of file discretesystemmodel.cpp.