contents


  • based on the frequencies that filters attenuate or boost, they maybe classified into different categories
  • low pass filter:
    • lets through only low frequencies
    • kills high frequencies
  • high pass filter:
    • reverse operation of low pass filter
  • bandpass filter:
    • allow a middle band
    • kills low end and high end
  • ideal filers:
    • theoretical best performance filters in each class of filters
    • similar to an ideal engine
    • cannot be implemented in real life
    • a useful paradigm to understand limitations of real-world filters

frequency classification

  • based on the shape of magnitude response of filters, they can be categorized into four types
    • lowpass
      • let low frequencies live and kill everything else
    • highpass
      • let high frequencies live and kill the rest
    • bandpass
      • let a band of central frequencies through and kill all else
    • allpass
      • let all frequencies through
      • the magnitude curve is a constant through all frequencies
  • this mirrors the time-domain filter classification
  • moving-average and leaky-integrator are lowpass filters

  • filters can also be classified based on phase change characteristic
    • linear phase
    • non-linear phase

ideal low pass filter

lp-fil-00

fig: ideal lowpass filter magnitude spectrum

  • ωc: cutoff frequency
    • frequencies above ωc are killed
    • below it are let through filter
    • the magnitude response transistions from 1 to 0 at ωc
    • filter bandwidth: ωb=2ωc
ideally:
  • lowpass filters are those which let all low band frequencies through
    • low frequency signals are untouched
    • completely attenuates high frequencies
  • magnitude of spectrum is
    • 1 for the low frequency pass band
    • 0 for the high frequency stop band
  • for this, magnitude response should be a real function
    • zero phase filter
    • no delay is added by the filter

formal low pass filter

H(ejω)={1 for |ω|ωc0 otherwise (2π-periodicity implicit) 

  • perfectly flat passband
  • infinite attenuation in the stopband
  • zero-phase (no-delay)
impulse response of ideal lowpass filter

h[n]=IDFT{H(ejω)} =12πππH(ejω)ejωndω =12πωcωcejωndω =1πnejωcnejωcn2j =sinωcnπn 

lp-fil-01

fig: ideal lowpass filter impulse response

  • response has a nice oscillatory shape
  • response is an infinite support impulse response
    • infinite both to the right and left
  • no matter how the convolution is computed, there will always be an infinite number of operations to compute
  • this is the ideal behavior and causes issue in real world filter implementation
    • cannot compute the output in a finite amount of time
  • this behavior is approximated to build filters that respond in finite time
    • approximation for computable, usable, real-world filters
  • the impulse response decays very slowly over time; i.e. @ rate 1n
    • a lot of samples are needed for a good approximation

dedicated filter response functions

  • the sinc-rect pair: rect(x)={1|x|120|x|>12  sinc(x)={sin(πx)πxx01x=0 sinc(x)=0 when x is a non-zero integer   sinc  function here is normalized  
frequency response of lowpass filter
  • frequency response in terms of a rect function of ideal lowpass filter is rect(ω2ωc)
    • ωc: cutoff frequency of lowpass filter
impulse response of lowpass filter
  • impulse response in terms of a sinc function of ideal lowpass filter is ωcπsinc(ωcπn)
relationship between lowpass filter impulse and frequency response

lp-fil-02

fig: ideal lowpass filter frequency (top) and impulse response (bottom) relationship

  • here:
    • ωc=π3
quirks of the ideal lowpass filter
  • the sinc function is not absolutely summable
    • consequently, the ideal lowpass is not BIBO stable
  • example: ωc=π3 h[n]=(13)sinc(n3)
  • consider a bounded input signal for ideal filter x[n]=sign{sinc(n3)}

  • to compute output of ideal filter, convolve this input and impulse response of ideal lowpass filter y[0]=(xh)[0] =13k=|sinc(k3)| =
    • the convolution is divergent computation
  • however, the divergence is fairly slow lp-fil-03

    fig: slow divergence of the ideal lowpass filter convolution with input x[n]


derived ideal filters

  • a series of other ideal filters can be derived from the ideal lowpass filter

ideal highpass filter

de-fil-00

fig: ideal highpass filter magnitude spectrum

formal ideal highpass filter

Hhp(ejω)={1 for π|ω|ωc0 otherwise (2π-periodicity implicit)  Hhp(ejω)=1Hlp(ejω)(highpass-lowpass relationship in frequency)  hhp[n]=δ[n]ωcπsinc(ωcπ)(highpass-lowpass relationship in time) 

  • it can be seen that the ideal highpass is a complementary filter of an ideal lowpass filter in the frequency domain

ideal bandpass filter

de-fil-01

fig: ideal bandpass filter magnitude spectrum

  • this is derived from the ideal lowpass filter by modulating them with a cosine wave

de-fil-02

fig: ideal lowpass filter modulated with cosine wave to obtain ideal bandpass

formal ideal bandpass filter

Hbp(ejω)={1 for |ω±ω0|ωc0 otherwise (2π-periodicity implicit)  hbp[n]=2cos(ω0n)ωcπsinc(ωcπn)(highpass-lowpass relationship in time) 


demodulation - frequency domain

  • time domain demodulation concepts
    • apply sinusoidal modulation to x[n] y[n]=x[n]cosω0n
    • demodulate by multiplication with carrier x[n]=y[n]cosω0n
    • demodulated signal contains unwanted high frequency components
    • these unwanted high frequency components are filtered out with a lowpass filter

filtering a demodulated signal

  • consider a signal in the frequency domain X(ejω)

    demod-fd-00

    fig: signal in frequency domain X(ejω)

  • this is then modulated to get two half amplitudes at the modulation frequency

    demod-fd-01

    fig: modulate X(ejω) signal in frequency domain

  • this has a periodicity of 2π in the frequency domain

    demod-fd-02

    fig: extended bounds to reveal periodicity of modulated signal X(ejω)

  • this is then multiplied by cosω0 to demodulate, which yields two components

    demod-fd-03

    fig: one copy of the demodulated signal

    demod-fd-04

    fig: second copy of the demodulated signal

  • to get the full demodulated signal, the two components are summed together to get

    demod-fd-05

    fig: sum of the components of the demodulated signal

  • examining a single period of this summation in [π,π]

    demod-fd-06

    fig: single period (between [π,π]) of the summed signal

  • here, spurious high frequency components near π has to be filtered out
  • this is achieved using a lowpass filter

    demod-fd-07

    fig: low pass filter applied to demodulated signal

  • the original signal is obtained as the output of the filter

    demod-fd-08

    fig: original signal obtained from filtering demodulated signal


references