summaryrefslogtreecommitdiff
path: root/40/CH8/EX8.2/Exa_8_2.sce
blob: 716bed88bd7e840d22c4244c1c17753ce0828818 (plain)
1
2
3
4
5
6
//The DTFT and conjugate symmetry
//8-point DFT
x=[1 1 0 0 0 0 0 0];
XDFT=fft(x,-1);
disp(XDFT,'The DFT of x is');
disp('from conjugate symmetry we see XDFT[k]=XDFT[8-k]');