diff options
Diffstat (limited to '67/CH8/EX8.10')
-rwxr-xr-x | 67/CH8/EX8.10/example810.sce | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/67/CH8/EX8.10/example810.sce b/67/CH8/EX8.10/example810.sce new file mode 100755 index 000000000..06da8b82d --- /dev/null +++ b/67/CH8/EX8.10/example810.sce @@ -0,0 +1,7 @@ +//Example 8.10
+//Find the IDFT of the following sequence
+clc;
+i=sqrt(-1);
+X=[3,2+i,1,2-i];
+x=fft(X,1);
+disp(x,'x[n]=');
\ No newline at end of file |