An IIR filter can often accomplish the same function as an FIR filter
with fewer coefficients. A typical 2 pole IIR filter has a transfer function
of the form:

This system has zeros at
and
. The poles create a
peak at
with a 3 dB bandwidth equal to
.
Use this form to design 2 IIR filters to isolate the the bandpass pulses
in bpmyst.m. Again the first one, h1[n], should be used to isolate
bp1 and the second one, h2[n], should be used to isolate bp2.
- (a)
- Plot the magnitude and phase of
and
.
- (b)
- Process the signal in bpmyst.m with each of the filters. Call the
output of the first filter y1[n] and the output of the second filter
y2[n]. Plot the time domain function y1[n] and the magnitude of the
frequency response
. Do the same for y2[n].
- (c)
- (ELEC 672 or Xtra credit) How many memory locations (i.e. filter
coefficients are required for each filter.