summaryrefslogtreecommitdiff
path: root/40/CH8/EX8.6/Exa_8_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '40/CH8/EX8.6/Exa_8_6.sce')
-rwxr-xr-x40/CH8/EX8.6/Exa_8_6.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/40/CH8/EX8.6/Exa_8_6.sce b/40/CH8/EX8.6/Exa_8_6.sce
new file mode 100755
index 000000000..be5c3cbb9
--- /dev/null
+++ b/40/CH8/EX8.6/Exa_8_6.sce
@@ -0,0 +1,20 @@
+//Signal and spectrum replication
+xn=[2 3 2 1];
+XDFT=dft(xn,-1)
+yn=[xn xn xn];
+YDFT=dft(yn,-1)
+YDFT1=3*[XDFT(1:1/3:length(XDFT))];
+for i=2:3
+ YDFT1(i:3:length(YDFT1))=0;
+end
+YDFT1(12:-1:11)=0;
+disp(YDFT1,'the DFT of x[n/3] is');
+hn=[xn(1:1/3:length(xn))]
+for i=2:3
+ hn(i:3:length(hn))=0;
+end
+hn(12:-1:11)=0;
+hn
+HDFT=dft(hn,-1)
+HDFT1=[XDFT;XDFT;XDFT];
+disp(HDFT1,'the DFT of y[n]=[x[n],x[n],x[n]] is'); \ No newline at end of file