diff options
Diffstat (limited to '67/CH8/EX8.12')
-rwxr-xr-x | 67/CH8/EX8.12/example812.sce | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/67/CH8/EX8.12/example812.sce b/67/CH8/EX8.12/example812.sce new file mode 100755 index 000000000..c1c7f0d67 --- /dev/null +++ b/67/CH8/EX8.12/example812.sce @@ -0,0 +1,6 @@ +//Example 8.12
+//For the given x[n] determine X[k] using FFT algorithm
+clc;
+x=[0,1,2,3,4,5,6,7];
+X=fft(x,-1);
+disp(X,'X[k]=');
\ No newline at end of file |