|
Filters 1.0
LPF, HPF, BPF, BSF, SRL
|
Second-order band-stop filter. More...
Go to the source code of this file.
Classes | |
| class | filter::band_stop::BSF_2< T > |
| Second-order band-stop filter. More... | |
Namespaces | |
| namespace | band_stop |
| Contains band-stop filter implementations. | |
| namespace | filter |
| Contains digital signal filtering algorithms. | |
| namespace | filter::band_stop |
Second-order band-stop filter.
This file defines the filter::band_stop::BSF_2 class, which implements a discrete-time second-order band-stop filter.
The filter attenuates frequency components within a specified frequency band while allowing frequencies below and above the stopband to pass.
The filter is parameterized by its center frequency, bandwidth, and sampling time. The quality factor is derived from the center frequency and bandwidth.
The implementation maintains previous input and output samples as internal filter 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 bsf_2.h.