summaryrefslogtreecommitdiff
path: root/830/CH3/EX3.2.3
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:38:01 +0530
committerprashantsinalkar2017-10-10 12:38:01 +0530
commitf35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch)
treeeb72842d800ac1233e9d890e020eac5fd41b0b1b /830/CH3/EX3.2.3
parent7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff)
downloadScilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip
updated the code
Diffstat (limited to '830/CH3/EX3.2.3')
-rwxr-xr-x830/CH3/EX3.2.3/Time_Shifting_Property.sce33
1 files changed, 18 insertions, 15 deletions
diff --git a/830/CH3/EX3.2.3/Time_Shifting_Property.sce b/830/CH3/EX3.2.3/Time_Shifting_Property.sce
index cdb9f6f3e..36adfe0ed 100755
--- a/830/CH3/EX3.2.3/Time_Shifting_Property.sce
+++ b/830/CH3/EX3.2.3/Time_Shifting_Property.sce
@@ -1,15 +1,18 @@
-//Graphical//
-//Example 3.2.3
-//Time Shifting Property of Z-transform
-clear;
-clc;
-close;
-x1 = [1,2,5,7,0,1];
-n1 = 0:length(x1)-1;
-X1 = ztransfer_new(x1,n1)
-//x2 = [1,2,5,7,0,1];
-n2 = 0-2:length(x1)-1-2;
-X2 = ztransfer_new(x1,n2)
-//x3 =[0,0,1,2,5,7,0,1];
-n3 = 0+2:length(x1)-1+2;
-X3 = ztransfer_new(x1,n3)
+//Graphical//
+//Example 3.2.3
+//Time Shifting Property of Z-transform
+clear;
+clc;
+close;
+function [Ztransfer]= ztransfer_new (sequence,n)
+ z = poly (0, 'z' , 'r' ); Ztransfer = sequence *(1/z )^n'
+endfunction
+x1 = [1,2,5,7,0,1];
+n1 = 0:length(x1)-1;
+X1 = ztransfer_new(x1,n1)
+//x2 = [1,2,5,7,0,1];
+n2 = 0-2:length(x1)-1-2;
+X2 = ztransfer_new(x1,n2)
+//x3 =[0,0,1,2,5,7,0,1];
+n3 = 0+2:length(x1)-1+2;
+X3 = ztransfer_new(x1,n3) \ No newline at end of file