Letx(n) be an arbitrary absolutely summable sequence, which may be of infinite duration. Itsz-transform is given by
X(z) = ∞ m=−∞
x(m)z−m
and we assume that the ROC ofX(z) includes the unit circle. We sample X(z) on the unit circle at equispaced points separated in angle by ω1 = 2π/N and call it a DFS sequence,
X˜(k) = X(z)|
z=ej2πNk, k= 0,±1,±2, . . .
= ∞ m=−∞
x(m)e−j2πNkm= ∞ m=−∞
x(m)WNkm (5.15)
which is periodic with periodN. Finally, we compute the IDFS of ˜X(k),
˜
x(n) = IDFSX˜(k)
which is also periodic with periodN. Clearly, there must be a relationship between the arbitrary x(n) and the periodic ˜x(n). This is an important issue. In order to compute the inverse DTFT or the inverse z-transform numerically, we must deal with a finite number of samples ofX(z) around the unit circle. Therefore we must know the effect of such sampling on the time-domain sequence. This relationship is easy to obtain.
˜
x(n) = 1 N
N−1 k=0
X(k)W˜ N−kn [from (5.2)]
= 1 N
N−1 k=0
∞
m=−∞
x(m)WNkm
WN−kn [from (5.15)]
or
˜ x(n) =
∞ m=−∞
x(m) 1 N
N−1 0
WN−k(n−m)
=
1, n−m=rN 0, elsewhere
=
= ∞ r=−∞
∞ m=−∞
x(m)δ(n−m−rN) ∞ m=−∞
x(m) ∞ r=−∞
δ(n−m−rN)
or
˜ x(n) =
∞ r=−∞
x(n−rN) =ã ã ã+x(n+N) +x(n) +x(n−N) +ã ã ã (5.16) which means that when we sample X(z) on the unit circle, we obtain a periodic sequence in the time domain. This sequence is a linear combina- tion of the originalx(n) and its infinite replicas, each shifted by multiples of±N. This is illustrated in Example 5.5. From (5.16), we observe that if x(n) = 0 forn <0 andn≥N, then there will be no overlap or aliasing in the time domain. Hence we should be able to recognize and recoverx(n) from ˜x(n), that is,
x(n) = ˜x(n) for 0≤n≤(N−1) or
x(n) = ˜x(n)RN(n) =
x(n),˜ 0≤n≤N−1 0, else
where RN(n) is called a rectangular window of lengthN. Therefore we have the following theorem.
THEOREM 1 Frequency Sampling
If x(n) is time-limited (i.e., of finite duration) to [0, N−1], then N samples of X(z)on the unit circle determineX(z) for allz.
EXAMPLE 5.4 Letx1(n) ={6
↑
,5,4,3,2,1}. Its DTFTX1(ejω) is sampled at
ωk=2πk
4 , k= 0,±1,±2,±3, . . .
to obtain a DFS sequence ˜X2(k). Determine the sequence ˜x2(n), which is the inverse DFS of ˜X2(k).
Solution Without computing the DTFT, the DFS, or the inverse DFS, we can evaluate
˜
x2(n) by using the aliasing formula (5.16).
˜ x2(n) =
∞ r=−∞
x1(n−4r)
Thusx(4) is aliased intox(0), andx(5) is aliased intox(1). Hence
˜
x2(n) ={. . . ,8,6,4,3,8
↑
,6,4,3,8,6,4,3, . . .}
EXAMPLE 5.5 Let x(n) = (0.7)nu(n). Sample itsz-transform on the unit circle with N = 5, 10, 20, 50 and study its effect in the time domain.
Solution From Table 4.1 thez-transform ofx(n) is X(z) = 1
1−0.7z−1 = z
z−0.7, |z|>0.7 We can now use MATLAB to implement the sampling operation
X(k) =˜ X(z)|z=ej2πk/N, k= 0,±1,±2, . . .
and the inverse DFS computation to determine the corresponding time-domain sequence. The MATLAB script forN= 5 is as follows.
>> N = 5; k = 0:1:N-1; % sample index
>> wk = 2*pi*k/N; zk = exp(j*wk); % samples of z
>> Xk = (zk)./(zk-0.7); % DFS as samples of X(z)
>> xn = real(idfs(Xk,N)); % IDFS
>> xtilde = xn’* ones(1,8); xtilde = (xtilde(:))’; % Periodic sequence
>> subplot(2,2,1); stem(0:39,xtilde);axis([0,40,-0.1,1.5])
>> xlabel(’n’); ylabel(’xtilde(n)’); title(’N=5’)
The plots in Figure 5.3 clearly demonstrate the aliasing in the time domain, especially for N = 5 andN = 10. For large values of N the tail end of x(n)
0 10 20 30 40
0 0.5 1 1.5
n
xtilde(n)
N=5
0 10 20 30 40
0 0.5 1 1.5
n
xtilde(n)
N=10
0 10 20 30 40
0 0.5 1 1.5
n
xtilde(n)
N=20
0 10 20 30 40
0 0.5 1 1.5
n
xtilde(n)
N=40
FIGURE 5.3 Plots in Example 5.5
is sufficiently small to result in any appreciable amount of aliasing in practice.
Such information is useful in effectively truncating an infinite-duration sequence
prior to taking its transform.
5.2.1 THEz-TRANSFORM RECONSTRUCTION FORMULA
Let x(n) be time-limited to [0, N−1]. Then from Theorem 1 we should be able to recover the z-transformX(z) using its samples ˜X(k). This is given by
X(z) = Z[x(n)] =Z[˜x(n)RN(n)]
=Z[ IDFS{ X(k)˜
Samples of X(z)
}RN(n)]
This approach results in the z-domain reconstruction formula.
X(z) =
N−1
0
x(n)z−n=
N−1 0
˜ x(n)z−n
=
N−1
0
1 N
N−1
0
X˜(k)WN−kn
z−n
= 1 N
N−1 k=0
X(k)˜ N−1
0
WN−knz−n
= 1 N
N−1 k=0
X(k)˜ N−1
0
WN−kz−1n
= 1 N
N−1 k=0
X(k)˜
1−WN−kNz−N 1−WN−kz−1
SinceWN−kN = 1, we have
X(z) = 1−z−N N
N−1 k=0
X(k)˜
1−WN−kz−1 (5.17) 5.2.2 THE DTFT INTERPOLATION FORMULA
The reconstruction formula (5.17) can be specialized for the discrete-time Fourier transform by evaluating it on the unit circlez=ejω. Then
X(ejω) = 1−e−jωN N
N−1 k=0
X(k)˜ 1−ej2πk/Ne−jω
=
N−1
k=0
X˜(k) 1−e−jωN N
1−ej2πk/Ne−jω
Consider
1−e−jωN N
1−ej2πk/Ne−jω = 1−e−j(ω−2πkN )N N
1−e−j(ω−2πkN )
= e−jN2(ω−2πkN ) e−12j(ω−2πkN )
sin
(ω−2πkN )N2 Nsin
(ω−2πkN )12
Let
Φ(ω)= sin(ωN2 )
Nsin(ω2)e−jω(N−12 ): an interpolating function (5.18) Then
X(ejω) =
N−1 k=0
X(k)Φ˜
!
ω−2πk N
"
(5.19) This is the DTFT interpolation formula to reconstruct X(ejω) from its samples ˜X(k). Since Φ(0) = 1, we have thatX(ej2πk/N) = ˜X(k), which means that the interpolation is exact at sampling points. Recall the time-domain interpolation formula (3.33) for analog signals:
xa(t) = ∞ n=−∞
x(n) sinc [Fs(t−nTs)] (5.20) The DTFT interpolating formula (5.19) looks similar.
However, there are some differences. First, the time-domain formula (5.20) reconstructs an arbitrary nonperiodic analog signal, while the frequency-domain formula (5.19) gives us a periodic waveform. Second, in (5.19) we use a sin(N x)Nsinx interpolation function instead of our more familiar
sinx
x (sinc) function. The Φ(ω) function is a periodic function and hence is known as a periodic-sinc function. It is also known as the Dirichlet function. This is the function we observed in Example 5.2.
5.2.3 MATLAB IMPLEMENTATION
The interpolation formula (5.19) suffers the same fate as that of (5.20) while trying to implement it in practice. One has to generate several inter- polating functions (5.18) and perform their linear combinations to obtain the discrete-time Fourier transform X(ejω) from its computed samples X˜(k). Furthermore, in MATLAB we have to evaluate (5.19) on a finer grid over 0≤ω≤2π. This is clearly an inefficient approach. Another approach is to use the cubic spline interpolation function as an efficient approxi- mation to (5.19). This is what we did to implement (5.20) in Chapter 3.
However, there is an alternate and efficient approach based on the DFT, which we will study in the next section.