Designing IIR Digital Filters Using the Bilinear Transform Method
- Login to Download
- 1 Credits
Resource Overview
Detailed Documentation
(1) First, employ the bilinear transform method to design a Butterworth low-pass IIR digital filter. According to the design specifications, the maximum attenuation should be less than 1dB in the passband for frequencies below 0.2π, while the minimum attenuation must exceed 15dB in the stopband within the frequency range [0.3π, π]. This typically involves calculating the filter order and cutoff frequency using MATLAB's `buttord` function, followed by designing the analog prototype with `butter` and applying bilinear transformation.
(2) Using a sampling interval of 0.02π, plot the magnitude-frequency response characteristics of the digital filter across the frequency range [0, π/2]. This can be implemented using MATLAB's `freqz` function to compute the frequency response and `plot` to visualize the results, with frequency points generated using `0:0.02*pi:pi/2`.
(3) Apply the designed filter to perform simulation filtering on actual ECG signal sampling sequences (provided later in this experiment). Use MATLAB's `filter` function for processing, then plot both the original and filtered ECG signal waveforms using plotting functions like `plot` or `subplot` to compare the signals side-by-side, enabling observation and summary of the filtering effects and performance.
- Login to Download
- 1 Credits