blob: 09e88f072ffe3bf8b9e919a51960e552c9a50414 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Example 8.25.1
//Find idft of the following
clc;
X=[1 1-%i*2 -1 1+%i*2];
x=fft(X,1);
disp(x);
//Example 8.25.2
//Find idft of the following
clc;
X=[1 0 1 0];
x=fft(X,1);
disp(x);
|