summaryrefslogtreecommitdiff
path: root/758/CH6/EX6.13/Ex_6_13.sce
blob: 4baf55c5a3f2908a435692283362bd77722fc67b (plain)
1
2
3
4
5
6
7
8
//Example 6.13
clc;clear;close;
X=[1 2 3 4];
//Calculation of IDFT
x=fft(X,1);
x=clean(x);
disp(X,'DFT of the Sequence is X(k): ');
disp(x,'Sequence is x(n): ');