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 --- 22/CH5/EX5.6/ch5ex6.sce | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 22/CH5/EX5.6/ch5ex6.sce (limited to '22/CH5/EX5.6') diff --git a/22/CH5/EX5.6/ch5ex6.sce b/22/CH5/EX5.6/ch5ex6.sce new file mode 100755 index 000000000..7ea80247f --- /dev/null +++ b/22/CH5/EX5.6/ch5ex6.sce @@ -0,0 +1,19 @@ +//LTi Systems characterized by Linear Constant +//Coefficient Difference equations +//Inverse Z Transform +//z = %z; +syms n z; +H1 = (2/3)/(z+0.2); +H2 = (8/3)/(z+0.8); +H3 = (2)/(z+0.5); +F1 = H1*z^(n)*(z+0.2); +F2 = H2*z^(n)*(z+0.8); +F3 = H3*z^(n)*(z+0.5); +h1 = limit(F1,z,-0.2); +disp(h1,'h1[n]=') +h2 = limit(F2,z,-0.8); +disp(h2,'h2[n]=') +h3 = limit(F3,z,-0.5); +disp(h3,'h3[n]=') +h = h1-h2+h3; +disp(h,'h[n]=') \ No newline at end of file -- cgit