Multidelay block frequency domain adaptive filter


The Multidelay block frequency domain adaptive filter algorithm is a block-based frequency domain implementation of the Least mean squares filter algorithm.

Introduction

The MDF algorithm is based on the fact that convolutions may be efficiently computed in the frequency domain. 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 LMS algorithm are:
Let be the length of the processing blocks, be the number of blocks and denote the 2Nx2N Fourier transform matrix. The variables are defined as:
With normalisation matrices and :
In practice, when multiplying a column vector by, we take the inverse FFT of, set the first 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:
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 reduces to an element-wise vector multiplication because is block-diagonal. The same goes for other multiplications.