The unitary discrete Fourier transform (DFT) of a sequence of numbers xn to Xk, with integer 0≤n<N and 0≤k<N, can be defined as:
Xk=1√NN−1∑n=0xne−2πikn/N
and the inverse discrete Fourier transform (IDFT) as:
xn=1√NN−1∑k=0Xke2πikn/N
If xn is modulated (multiplied) by a unit-magnitude zero-phase complex sinusoid e−2π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)=1√NN−1∑n=0xne−2πikn/Ne−2πibn/N=1√NN−1∑n=0xne−2πi(k+b)n/N xn=e2πibn/N1√NN−1∑k=0Xk(b)⋅e2πikn/N=1√NN−1∑k=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:
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
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 n∈Z,k∈Z
The IDFT output xn (Eq. 2 of the question) extended to n∈Z, is a weighted sum of the extended DFT basis functions and must thus also have the property that:
xn+N=xnfor all n∈Z
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 n∈Z,k∈Z
The extended output of frequency-shifted IDFT has the same property:
xn+N=e2πibxnfor all n∈Z
This seems to be called Bloch-periodicity: Each replicate equals the previous one multiplied by e2πib. For 0≤b<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