From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 716/CH7/EX7.10.III/7_12_ExerciseIII7_10.sce | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 716/CH7/EX7.10.III/7_12_ExerciseIII7_10.sce (limited to '716/CH7/EX7.10.III') diff --git a/716/CH7/EX7.10.III/7_12_ExerciseIII7_10.sce b/716/CH7/EX7.10.III/7_12_ExerciseIII7_10.sce new file mode 100755 index 000000000..32810234c --- /dev/null +++ b/716/CH7/EX7.10.III/7_12_ExerciseIII7_10.sce @@ -0,0 +1,10 @@ +//determine z transform of x(n)={0.5,-0.25,1} +clc; +clear; +x={0.5,-0.25,1}; +z=poly(0,"z"); +X=0; +for n=1:1:3 + X=X+x(n)*(z^(-1*(n-1))); +end +disp(X,"Z tranform="); \ No newline at end of file -- cgit