|
Filters 1.0
LPF, HPF, BPF, BSF, SRL
|
First-order low-pass filter. More...
#include "../../src/low_pass/lpf_1.tpp"Go to the source code of this file.
Classes | |
| class | filter::low_pass::LPF_1< T > |
| First-order low-pass filter. More... | |
Namespaces | |
| namespace | filter |
| Contains digital signal filtering algorithms. | |
| namespace | filter::low_pass |
| namespace | low_pass |
| Contains low-pass filter implementations. | |
First-order low-pass filter.
This file defines the filter::low_pass::LPF_1 class, which implements a first-order low-pass filter for attenuating high-frequency components of an input signal.
The filter is parameterized by its cutoff frequency and sampling time. The implementation maintains the previous output value as its internal state.
The class is templated to support different numeric types such as float and double.
| T | Numeric data type used for the filter calculations. |
Definition in file lpf_1.h.