summaryrefslogtreecommitdiff
path: root/40/CH8/EX8.8/Exa_8_8.sce
blob: 7fad7f114998d44249d66b3d6c7a5d57acccc7bf (plain)
1
2
3
4
5
6
7
8
9
//Relating DFT and DTFT
xn=[1 2 1 0];
XDFT=dft(xn,-1);
//for F=k/4,k=0,1,2,3
for k=1:4
    XF(k)=1+2*%e^(-%i*%pi*(k-1)/2)+%e^(-%i*%pi*(k-1));
end
XF,XDFT
disp(XF,'The DFT of x[n] is');