summaryrefslogtreecommitdiff
path: root/67/CH8/EX8.10/example810.sce
blob: 06da8b82d300817fd6ee3eff884028c2d44ef49f (plain)
1
2
3
4
5
6
7
//Example 8.10
//Find the IDFT of the following sequence
clc;
i=sqrt(-1);
X=[3,2+i,1,2-i];
x=fft(X,1);
disp(x,'x[n]=');