Statistical properties of a discrete time scalar signal. More...
#include <math/gzmath.hh>
Inherited by SignalMaxAbsoluteValue, SignalMean, and SignalRootMeanSquare.
Public Member Functions | |
| SignalStatistic () GAZEBO_DEPRECATED(8.0) | |
| Constructor. More... | |
| SignalStatistic (const SignalStatistic &_ss) GAZEBO_DEPRECATED(8.0) | |
| Copy constructor. More... | |
| virtual | ~SignalStatistic () |
| Destructor. More... | |
| virtual size_t | Count () const |
| Get number of data points in measurement. More... | |
| virtual void | InsertData (const double _data)=0 |
| Add a new sample to the statistical measure. More... | |
| virtual void | Reset () |
| Forget all previous data. More... | |
| virtual std::string | ShortName () const =0 |
| Get a short version of the name of this statistical measure. More... | |
| virtual double | Value () const =0 |
| Get the current value of the statistical measure. More... | |
Protected Attributes | |
| std::unique_ptr < SignalStatisticPrivate > | dataPtr |
| Pointer to private data. More... | |
Statistical properties of a discrete time scalar signal.
| SignalStatistic | ( | ) |
Constructor.
|
virtual |
Destructor.
| SignalStatistic | ( | const SignalStatistic & | _ss | ) |
Copy constructor.
| [in] | _ss | SignalStatistic to copy |
|
virtual |
Get number of data points in measurement.
|
pure virtual |
Add a new sample to the statistical measure.
| [in] | _data | New signal data point. |
Implemented in SignalMaxAbsoluteValue, SignalRootMeanSquare, and SignalMean.
|
virtual |
Forget all previous data.
|
pure virtual |
Get a short version of the name of this statistical measure.
Implemented in SignalMaxAbsoluteValue, SignalRootMeanSquare, and SignalMean.
|
pure virtual |
Get the current value of the statistical measure.
Implemented in SignalMaxAbsoluteValue, SignalRootMeanSquare, and SignalMean.
|
protected |
Pointer to private data.