summaryrefslogtreecommitdiff
path: root/758/CH6/EX6.14/Ex_6_14.sce
blob: c34b8b74e91cff043ff9ce6ef35bfa1b1d221c5c (plain)
1
2
3
4
5
6
7
8
//Example 6.14
clc;clear;close;
X=[3 2+%i 1 2-%i];
//Calculation of IDFT
x=dft(X,1);
x=clean(x);
disp(X,'DFT of the Sequence is X(k): ');
disp(x,'Sequence is x(n): ');