Robot Simulator of the Robotics Group for Self-Organization of Control
0.8.0
|
#include <complexmeasure.h>
Public Member Functions | |
ComplexMeasure (const char *measureName, ComplexMeasureMode mode, int numberBins) | |
creates a new complex measure. More... | |
virtual void | addObservable (double &observedValue, double minValue, double maxValue) |
adds a observed variable to the measure. More... | |
virtual | ~ComplexMeasure () |
virtual void | step () |
defined by AbstractMeasure. More... | |
![]() | |
AbstractMeasure (const char *measureName) | |
virtual | ~AbstractMeasure () |
virtual std::string | getName () const |
virtual double | getValue () const |
virtual double & | getValueAddress () |
virtual void | setStepSize (int newStepSize) |
virtual int | getStepSize () const |
virtual long | getActualStep () const |
virtual void | setDisplayPrecision (int digits) |
virtual int | getDisplayPrecision () const |
![]() | |
virtual | ~IMeasure () |
Protected Member Functions | |
void | calculatePInf () |
calculates the Predictive Information More... | |
void | updateEntropy (int binNumber) |
updates the entropy. More... | |
void | computeEntropy () |
computes the entropy. More... | |
void | initF () |
inits F, neccessary after each call of addObservable() More... | |
Protected Attributes | |
std::list< double * > | observedValueList |
std::list< Discretisizer * > | discretisizerList |
ComplexMeasureMode | mode |
int | numberBins |
long | fSize |
int | historySize |
int * | binNumberHistory |
int | historyIndex |
int * | historyIndexList |
int | historyIndexNumber |
int | historyInterval |
matrix::SparseArray< long, int > | F |
![]() | |
std::string | name |
double | value |
long | actualStep |
int | stepSize |
int | displayPrecision |
ComplexMeasure | ( | const char * | measureName, |
ComplexMeasureMode | mode, | ||
int | numberBins | ||
) |
creates a new complex measure.
the calculated things are such like mutual information, entropy, joint entropy and so on. it`s possible to add new ones, see above for the ComplexMeasureModes. Don"t forget! to add observed values! with the method
measureName | the name of the measure, needed for PlotOptions and HUDSM |
mode | the measure you like to have |
numberBins | in earlier versions named as intervalCount. For complex measures the observedValue has to be discretisized, this does the ComplexMeasure with the class Discretisizer for you. |
|
virtual |
|
virtual |
adds a observed variable to the measure.
observedValue | address of the observed value |
minValue | minimum value the observed value can become |
maxValue | maximum value the observed value can become |
|
protected |
calculates the Predictive Information
|
protected |
computes the entropy.
uses the normal rule with O(m*n*o) costs
|
protected |
inits F, neccessary after each call of addObservable()
|
virtual |
defined by AbstractMeasure.
This method is called from StatisticTools for updating the measure in every simStep (ODE).
Implements IMeasure.
Reimplemented in TrackableMeasure.
|
protected |
updates the entropy.
uses update rule with O(1) costs
binNumber | the bin number |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |