IIR Filter

 clc; clear; close;

z = poly(0, 'z');
numerator = -0.405 - 0.810 * z - 0.405 * z^2;
denominator = 0.202 + 0.404 * z + z^2;
h = numerator / denominator;
// Compute the magnitude response
[hzm, fr] = frmag(h, 256);
plot(fr, hzm);
title('Lowpass Butterworth Filter Response');
ylabel('Amplitude -->');
xlabel('Normalized Frequency (f/fs) -->');

Comments

Popular posts from this blog

Computation of DFT Using Basic Equation of FFT and Power Spectrum Estimating using DFT

Compute Convolution for Longer Sequence

Spectrum Analysis using DFT