Trisha Shetty (Editor)

Multidelay block frequency domain adaptive filter

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Multidelay block frequency domain adaptive filter

The Multidelay block frequency domain adaptive filter (MDF) algorithm is a block-based frequency domain implementation of the (normalised) Least mean squares filter (LMS) algorithm.

Contents

Introduction

The MDF algorithm is based on the fact that convolutions may be efficiently computed in the frequency domain (thanks to the Fast Fourier Transform). However, the algorithm differs from the Fast LMS algorithm in that block size it uses may be smaller than the filter length. If both are equal, then MDF reduces to the FLMS algorithm.

The advantages of MDF over the (N)LMS algorithm are:

  • Lower algorithmic complexity
  • Partial de-correlation of the input (which 'may' lead to faster convergence)
  • Let N be the length of the processing blocks, K be the number of blocks and F denote the 2Nx2N Fourier transform matrix. The variables are defined as:

    e _ ( ) = F [ 0 1 x N , e ( N ) , , e ( N N 1 ) ] T x _ k ( ) = d i a g { F [ x ( ( k + 1 ) N ) , , x ( ( k 1 ) N 1 ) ] T } X _ ( ) = [ x _ 0 ( ) , x _ 1 ( ) , , x _ K 1 ( ) ] d _ ( ) = F [ 0 1 x N , d ( N ) , , d ( N N 1 ) ] T

    With normalisation matrices G 1 and G 2 :

    G 1 = F [ 0 N x N 0 N x N 0 N x N I N x N ] F H G ~ 2 = F [ I N x N 0 N x N 0 N x N 0 N x N ] F H G 2 = d i a g { G ~ 2 , G ~ 2 , , G ~ 2 }

    In practice, when multiplying a column vector x by G 1 , we take the inverse FFT of x , set the first N values in the result to zero and then take the FFT. This is meant to remove the effects of the circular convolution.

    Algorithm description

    For each block, the MDF algorithm is computed as:

    y ^ _ ( ) = G 1 X _ ( ) h ^ _ ( 1 ) e _ ( ) = d _ ( ) y ^ _ ( ) Φ x x ( ) = X _ H ( ) X _ ( ) h ^ _ ( ) = h ^ _ ( 1 ) + μ G 2 Φ x x 1 ( ) X _ H ( ) e _ ( )

    It is worth noting that, while the algorithm is more easily expressed in matrix form, the actual implementation requires no matrix multiplications. For instance the normalisation matrix computation Φ x x = X _ H ( ) X _ ( ) reduces to an element-wise vector multiplication because X _ ( ) is block-diagonal. The same goes for other multiplications.

    References

    Multidelay block frequency domain adaptive filter Wikipedia