diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2303/CH5/EX5.4/5_4.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2303/CH5/EX5.4/5_4.sce')
-rwxr-xr-x | 2303/CH5/EX5.4/5_4.sce | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/2303/CH5/EX5.4/5_4.sce b/2303/CH5/EX5.4/5_4.sce new file mode 100755 index 000000000..561f69fc0 --- /dev/null +++ b/2303/CH5/EX5.4/5_4.sce @@ -0,0 +1,28 @@ +//Example 5.4
+clear;
+clc ;
+close ;
+x = [1,2,3,4,5,2,3,1];
+disp(x,"x[n]=");
+//DFT Computation
+X = fft (x , -1);
+//Display sequence X[k] in command window
+disp(X,"X[k]=");
+
+//Finding time shifted input sequence x[n-2]
+y=x;
+for i=1:2
+ a=y(1);
+ for j=1:length(y)-1
+ y(j)=y(j+1);
+ end
+ y(length(y))=a;
+end
+disp(y,"x2[n]=x[n-2]=");
+//using Time-shifting property
+X2=[zeros(1:8)];
+w=-%i;
+for j=1:8
+ X2(j)=[(w)^(j-1)]*X(j);
+end
+disp(X2,"Using time-shifting property,DFT of x[n-2]=X2[k]=");
|