A simple infinite-impulse response filter for real-valued signals. More...
#include <signal_processing.h>
Public Member Functions | |
CRCLowPassFilter (Real f_smoothing_factor) | |
Class constructor. More... | |
Real | Filter (Real f_input) |
Applies the filter to the given value. More... | |
void | Reset () |
Resets the filter. More... | |
A simple infinite-impulse response filter for real-valued signals.
Definition at line 66 of file signal_processing.h.
argos::CRCLowPassFilter::CRCLowPassFilter | ( | Real | f_smoothing_factor | ) |
Class constructor.
f_smoothing_factor | The smoothing factor of the RC flter. |
Definition at line 40 of file signal_processing.cpp.
Applies the filter to the given value.
f_input | The new value of the signal to filter. |
Definition at line 47 of file signal_processing.cpp.
void argos::CRCLowPassFilter::Reset | ( | ) |
Resets the filter.
Definition at line 61 of file signal_processing.cpp.