<< Chapter < Page Chapter >> Page >
This module introduces adaptive filters through the example of system identification using the LMS algorithm. The adaptive filter adjusts its coefficients to minimize the mean-square error between its output and that of an unknown system.

Introduction

[link] is a block diagram of system identification using adaptive filtering. The objective is tochange (adapt) the coefficients of an FIR filter, W , to match as closely as possible the response of an unknown system, H . The unknown system and the adapting filter process the same input signal x n and have outputs d n (also referred to as the desired signal) and y n .

System identification block diagram.

Gradient-descent adaptation

The adaptive filter, W , is adapted using the least mean-square algorithm, which is the most widely used adaptive filteringalgorithm. First the error signal, e n , is computed as e n d n y n , which measures the difference between the output of the adaptive filter and the output of the unknown system.On the basis of this measure, the adaptive filter will change its coefficients in an attempt to reduce the error.The coefficient update relation is a function of the error signal squared and is given by

h n + 1 i h n i μ 2 h n i e 2

The term inside the parentheses represents the gradient of the squared-error with respect to the i th coefficient. The gradient is a vector pointing in the direction of the change in filter coefficients that willcause the greatest increase in the error signal. Because the goal is to minimize the error, however, [link] updates the filter coefficients in the direction opposite the gradient; that is why the gradientterm is negated. The constant μ is a step-size, which controls the amount of gradient information used to update each coefficient. Afterrepeatedly adjusting each coefficient in the direction opposite to the gradient of the error, the adaptive filtershould converge; that is, the difference between the unknown and adaptive systems should get smaller and smaller.

To express the gradient decent coefficient update equation in a more usable manner, we can rewrite the derivative of thesquared-error term as

h i e 2 2 h i e e 2 h i d y e 2 h i d i 0 N 1 h i x n i e
h i e 2 2 x n i e
which in turn gives us the final LMS coefficient update,
h n+1 i h n i μ e x n i
The step-size μ directly affects how quickly the adaptive filter will converge toward the unknown system. If μ is very small, then the coefficients change only a small amount at each update, and the filter convergesslowly. With a larger step-size, more gradient information is included in each update, and the filter converges morequickly; however, when the step-size is too large, thecoefficients may change too quickly and the filter will diverge. (It is possible in some cases to determineanalytically the largest value of μ ensuring convergence.)

Matlab simulation

Simulate the system identification block diagram shown in [link] .

Previously in MATLAB, you used the filter command or the conv command to implement shift-invariant filters. Those commands will not work here because adaptivefilters are shift-varying, since the coefficient update equation changes the filter's impulse response at every sampletime. Therefore, implement the system identification block on a sample-by-sample basis with a do loop, similar to the way you might implement a time-domain FIR filter on aDSP. For the "unknown" system, use the fourth-order, low-pass, elliptical, IIR filter designed for the IIR Filtering: Filter-Design Exercise in MATLAB .

Use Gaussian random noise as your input, which can be generated in MATLAB using the command randn . Random white noise provides signal at all digital frequenciesto train the adaptive filter. Simulate the system with an adaptive filter of length 32 and a step-size of 0.02 . Initialize all of the adaptive filter coefficients to zero. From your simulation, plot the error (orsquared-error) as it evolves over time and plot the frequency response of the adaptive filter coefficients at the end of thesimulation. How well does your adaptive filter match the "unknown" filter? How long does it take to converge?

Once your simulation is working, experiment with different step-sizes and adaptive filter lengths.

Processor implementation

Use the same "unknown" filter as you used in the MATLAB simulation.

Although the coefficient update equation is relatively straightforward, consider using the lms instruction available on the TI processor, which is designed for this application and yields a very efficientimplementation of the coefficient update equation.

To generate noise on the DSP, you can use the PN generator from the Digital Transmitter: Introduction to Quadrature Phase-Shift Keying , but shift the PN register contents up to make the sign bit random.(If the sign bit is always zero, then the noise will not be zero-mean and this will affect convergence.) Send the desiredsignal, d n , the output of the adaptive filter, y n , and the error to the D/A for display on the oscilloscope.

When using the step-size suggested in the MATLAB simulation section, you should notice that the error converges veryquickly. Try an extremely small μ so that you can actually watch the amplitude of the error signal decrease towards zero.

Extensions

If your project requires some modifications to the implementation here, refer to Haykin and consider some of the following questions regarding such modifications:

  • How would the system in [link] change for different applications? (noise cancellation,equalization, etc. )
  • What happens to the error when the step-size is too large or too small?
  • How does the length of an adaptive FIR filters affect convergence?
  • What types of coefficient update relations are possible besides the described LMS algorithm?

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Dsp laboratory with ti tms320c54x. OpenStax CNX. Jan 22, 2004 Download for free at http://cnx.org/content/col10078/1.2
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Dsp laboratory with ti tms320c54x' conversation and receive update notifications?

Ask