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 /716/CH7/EX7.1.a | |
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 '716/CH7/EX7.1.a')
-rwxr-xr-x | 716/CH7/EX7.1.a/Solved_Ex_7_1a.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/716/CH7/EX7.1.a/Solved_Ex_7_1a.sce b/716/CH7/EX7.1.a/Solved_Ex_7_1a.sce new file mode 100755 index 000000000..526e44331 --- /dev/null +++ b/716/CH7/EX7.1.a/Solved_Ex_7_1a.sce @@ -0,0 +1,10 @@ +//determine z transform of x(n)={3,2,5,7}
+clc;
+clear;
+x={3,2,5,7};
+z=poly(0,"z");
+X=0;
+for n=1:1:4
+ X=X+x(n).*(z^(-1*(n-1)));
+end
+disp(X,"Z tranform=");
\ No newline at end of file |