Wednesday, 25 May 2016

dft - Symmetry and periodicity of frequency-shifted discrete Fourier transform


The unitary discrete Fourier transform (DFT) of a sequence of numbers xn to Xk, with integer 0n<N and 0k<N, can be defined as:


Xk=1NN1n=0xne2πikn/N


and the inverse discrete Fourier transform (IDFT) as:


xn=1NN1k=0Xke2πikn/N


If xn is modulated (multiplied) by a unit-magnitude zero-phase complex sinusoid e2πibn/N before DFT, and the IDFT output is demodulated (divided) by the same, then we get another transform pair from the family of generalized discrete Fourier transforms, parameterized by the constant b:


Xk(b)=1NN1n=0xne2πikn/Ne2πibn/N=1NN1n=0xne2πi(k+b)n/N xn=e2πibn/N1NN1k=0Xk(b)e2πikn/N=1NN1k=0Xk(b)e2πi(k+b)n/N


Whereas DFT samples frequencies 2πk/N, the frequency-shifted transform samples frequencies 2π(k+b)/N. This can be visualized on the Z-plane:



enter image description here
Figure 1. Z-plane representation, showing the unit circle, of the frequencies sampled by A) DFT and B) the frequency-shifted DFT, with N=12 and b=1/3. The shift 2πb/N appears as the angle between the real axis and the vector from origin to one of the sampled frequencies.


Question: What are the time-domain symmetry and periodicity properties of such frequency-shifted Fourier transforms when extending n beyond $0\le n in the inverse transform, and how does this depend on the parameter b?


For DFT (or with b=0) the time-domain extension has period N with no time-domain symmetry imposed by the transform.



Answer



Symmetry and periodicity


In standard DFT, each extended kth basis function e2πikn/N is periodic with a period N, shown by:


e2πik(n+N)/N=e2πikn/Ne2πik=e2πikn/N1k=e2πikn/Nfor all nZ,kZ


The IDFT output xn (Eq. 2 of the question) extended to nZ, is a weighted sum of the extended DFT basis functions and must thus also have the property that:


xn+N=xnfor all nZ



The extended frequency-shifted DFT basis functions e2πi(k+b)n/N are not in general periodic, particularly not with period N. However, they have the property:


e2πi(k+b)(n+N)/N=e2πi(k+b)n/Ne2πi(k+b)=e2πi(k+b)n/Ne2πibfor all nZ,kZ


The extended output of frequency-shifted IDFT has the same property:


xn+N=e2πibxnfor all nZ


This seems to be called Bloch-periodicity: Each replicate equals the previous one multiplied by e2πib. For 0b<1, the coefficient is complex-valued except for b=0 for which it equals 1 (regular periodity) and b=1/2 for which it equals 1 (antiperiodicity).


There is no reversal of the replicates, unlike there is with a discrete cosine transform (DCT).


Convolution


With frequency-shifted DFT, multiplication in the frequency domain results in Bloch-periodic convolution in time domain. For example with b=1/4, which gives the coefficient i:


N = 8;
b = 0.25;

x = [1 1 1 1 1 0 0 0];
m = exp(j*2*pi*b*[0:N-1]/N)
x = x./m;
fx = fft(x);
fx = fx.*fx;
x = ifft(fx);
x = x.*m

Convolving the sequence x by itself results in:


                         [1-i 2   3   4   5   4   3   2]


This can be understood as representing linear convolution of sequences:


[... -i -i -i -i -i 0 0 0 1   1   1   1   1   0   0   0 i i i i i 0 0 0 ...]
[1 1 1 1 1 0 0 0]

There is literature about symmetric convolution using variants of DCT and discrete sine transform:



  • S. A. Martucci, "Symmetric convolution and the discrete sine and cosine transforms," in IEEE Transactions on Signal Processing, vol. 42, no. 5, pp. 1038-1051, May 1994. doi: 10.1109/78.295213


Also of interest: Marios Athineos's The DTT and GDFT in MATLAB



No comments:

Post a Comment

readings - Appending 内 to a company name is read ない or うち?

For example, if I say マイクロソフト内のパートナーシップは強いです, is the 内 here read as うち or ない? Answer 「内」 in the form: 「Proper Noun + 内」 is always read 「ない...