#include <WienerInterpolator.h>

Public Member Functions | |
| double | GetXms () const |
| Return the prediction error. | |
| virtual void | AdaptFilter (const gplib::rvec &Input, const gplib::rvec &Desired) |
| Calculate the prediction coefficients, the contents of Desired are ignored, this function has to be implemented in the filter class hieraychy. | |
| gplib::rvec | CalcCoefficients (const gplib::rvec &Input) |
| A more convenient method to get the prediction coefficients, but unique to this class. | |
| WienerInterpolator (const int filterlength) | |
| The constructor needs to know the filterlength. | |
| virtual | ~WienerInterpolator () |
Definition at line 19 of file WienerInterpolator.h.
| WienerInterpolator::WienerInterpolator | ( | const int | filterlength | ) |
The constructor needs to know the filterlength.
Definition at line 5 of file WienerInterpolator.cpp.
| WienerInterpolator::~WienerInterpolator | ( | ) | [virtual] |
Definition at line 11 of file WienerInterpolator.cpp.
| void WienerInterpolator::AdaptFilter | ( | const gplib::rvec & | Input, | |
| const gplib::rvec & | Desired | |||
| ) | [virtual] |
Calculate the prediction coefficients, the contents of Desired are ignored, this function has to be implemented in the filter class hieraychy.
Implements AdaptiveFilter.
Definition at line 15 of file WienerInterpolator.cpp.
References size.
Referenced by CalcCoefficients(), and main().
| gplib::rvec WienerInterpolator::CalcCoefficients | ( | const gplib::rvec & | Input | ) | [inline] |
A more convenient method to get the prediction coefficients, but unique to this class.
Definition at line 30 of file WienerInterpolator.h.
References AdaptFilter(), and LSSOFilter::GetWeights().
| double WienerInterpolator::GetXms | ( | ) | const [inline] |
1.5.8