Neha Patil (Editor)

Non uniform discrete Fourier transform

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Non-uniform discrete Fourier transform httpsiytimgcomvijQmDwJqkrQwmaxresdefaultjpg

In applied mathematics, the non-uniform discrete Fourier transform (NDFT) of a signal is a type of Fourier transform, related to a discrete Fourier transform or discrete-time Fourier transform, but in which the input signal is not sampled at equally spaced intervals. As a result of this, the computed Discrete Fourier Transform can also consist of unevenly sampled frequency values. It is however also possible to compute uniformly sampled frequency values from an unevenly sampled input signal.

Contents

As a generalized approach for nonuniform sampling, NDFT allows one to obtain frequency domain information of a finite length signal at any frequency. It can also be used to design the FIR filters as the role of DFT, no matter if it's 1-D or 2-D.

One of the reasons to adopt NDFT is that many signals have their energy distributed nonuniformly in the frequency domain. Therefore, a nonuniform sampling scheme could be more convenient and useful in many Digital Signal Processing (DSP) applications. For example, NDFT provides a variable spectral resolution controlled by the user.

Note that NDFT reduces to DFT when the sampling points are located on the unit circle at equally spaced angles.

Definition

1-D NDFT of a sequence x[n] of length N is

X ( z k ) = X ( z ) | z = z k = n = 0 N 1 x [ n ] z k n , k = 0 , 1 , . . . , N 1 ,

where X ( z ) is the Z-transform of x [ n ] , and { z i } i = 0 , 1 , . . . , N 1 are arbitrarily distinct points in the z-plane.

Expressing the above as matrix, we get

X = D x

where

X = [ X ( z 0 ) X ( z 1 ) X ( z N 1 ) ] , x = [ x [ 0 ] x [ 1 ] x [ N 1 ] ] ,  and D = [ 1 z 0 1 z 0 2 z 0 ( N 1 ) 1 z 1 1 z 1 2 z 1 ( N 1 ) 1 z N 1 1 z N 1 2 z N 1 ( N 1 ) ] .

As we can see, the NDFT is characterized by D and hence the N z k points. If we further factorize d e t ( D ) , we can see that D is nonsingular provided the N z k points are distinct. If D is nonsingular, we can get a unique inverse NDFT as following:

x = D 1 X

Given X  and  D , we can use Gaussian elimination to solve x . However, the complexity of this method is O ( N 3 ) . To solve this problem more efficiently, we first determine X ( z ) directly by polynomial interpolation

X ^ [ k ] = X ( z k ) , k = 0 , 1 , . . . , N 1 ,

then x[n] is the coefficients of the above interpolating polynomial which can be solved more efficiently. This is illustrated in the next subsection.

Solving the inverse NDFT

Expressing X ( z ) as the Lagrange polynomial of order N-1, we get

X ( z ) = k = 0 N 1 L k ( z ) L k ( z k ) X ^ [ k ] ,

where { L i ( z ) } i = 0 , 1 , . . . , N 1 are the fundamental polynomials:

L k ( z ) = i k ( 1 z i z 1 ) , k = 0 , 1 , . . . , N 1

Expressing X ( z ) by Newton interpolation method, we get

X ( z ) = c 0 + c 1 ( 1 z 0 z 1 ) + c 2 ( 1 z 0 z 1 ) ( 1 z 1 z 1 ) + . . . + C N 1 k = 0 N 2 ( 1 z k z 1 ) ,

where c j is the divided difference of the jth order of X ^ [ 0 ] , X ^ [ 1 ] , . . . , X ^ [ j ] with respect to z 0 , z 1 , . . . , z j :

c 0 = X ^ [ 0 ] , c 1 = X ^ [ 1 ] c 0 1 z 0 z 1 1 , c 2 = X ^ [ 2 ] c 0 c 1 ( 1 z 0 z 1 ) ( 1 z 0 z 2 1 ) ( 1 z 1 z 2 1 ) ,

The disadvantage of Lagrange representation is that any additional point included will increase the order of the interpolating polynomial, leading to the need of recomputing all the fundamental polynomials. However, any additional point included in Newton representation only require one more term.

We can use a lower triangular system to solve { c j } :

L c = X

where

X = [ X ^ [ 0 ] X ^ [ 1 ] X ^ [ N 1 ] ] , c = [ c 0 c 1 c N 1 ] ,  and L = [ 1 0 0 0 0 1 ( 1 z 0 z 1 1 ) 0 0 0 1 ( 1 z 0 z 2 1 ) ( 1 z 0 z 2 1 ) ( 1 z 1 z 2 1 ) 0 0 1 ( 1 z 0 z N 1 1 ) ( 1 z 0 z N 1 1 ) ( 1 z 1 z N 1 1 ) k = 0 N 2 ( 1 z k z N 1 1 ) ] .

By the above equation, { c j } can be computed within O ( N 3 ) operations. In this way Newton interpolation is more efficient than Lagrange Interpolation unless the latter is modified by

L k + 1 ( z ) = ( 1 z k + 1 z 1 ) ( 1 z k z 1 ) L k ( z ) , k = 0 , 1 , . . . , N 1

2-D NDFT

2-D NDFT of a sequence x [ n 1 , n 2 ] of size N 1 × N 2 is

X ^ ( z 1 k , z 2 k ) = n 1 = 0 N 1 1 n 2 = 0 N 2 1 x [ n 1 , n 2 ] z 1 k n 1 z 2 k n 2 , k = 0 , 1 , . . . , N 1 N 2 1 ,

where X ^ ( z 1 k , z 2 k ) is the 2-D z-transform of x [ n 1 , n 2 ] , and ( z 1 k , z 2 k ) are arbitrarily distinct N 1 N 2 points in the 4-D ( z 1 , z 2 ) space.

As in the 1-D case, we can express the above equation as

X ^ = D X ,

and the matrix D is also depends only on the choice of those sampling points. However, even if those sampling points are distinct, D could still be singular. No rules for determining whether the matrix is nonsingular or not have been found. Therefore, for all implementation of 2-D NDFT, we just check d e t ( D ) for a specific set of sampling points. In general, the complexity of 2-D NDFT O ( N 1 3 N 2 3 ) .

Applications

The applications of NDFT are:

  • Digital filter design
  • Spectral analysis
  • Antenna array design
  • Antenna pattern synthesis with prescribed nulls
  • Decoding of dual-tone multi-frequency(DTMF) signals
  • Dual-tone multi-frequency tone detection
  • References

    Non-uniform discrete Fourier transform Wikipedia