From 8ac15bc5efafa2afc053c293152605b0e6ae60ff Mon Sep 17 00:00:00 2001 From: Siddharth Agarwal Date: Tue, 3 Sep 2019 18:27:40 +0530 Subject: Xcos examples from textbooks and for blocks --- Working_Examples/3432/CH3/EX3.14/Ex3_14.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 Working_Examples/3432/CH3/EX3.14/Ex3_14.sce (limited to 'Working_Examples/3432/CH3/EX3.14') diff --git a/Working_Examples/3432/CH3/EX3.14/Ex3_14.sce b/Working_Examples/3432/CH3/EX3.14/Ex3_14.sce new file mode 100755 index 0000000..c1ab833 --- /dev/null +++ b/Working_Examples/3432/CH3/EX3.14/Ex3_14.sce @@ -0,0 +1,23 @@ +//Example 3.14 +//Partial fraction expansion for distinct real roots +clear; +clc; +//------------------------------------------------------------------ +// Transfer function +s=%s; +num=2; +p1=(s+1); +p2=(s+2); +p3=(s+4); +sys=syslin('c',num/(p1*p2*p3)) + +//Partial fraction expansion is: sys= r1/p1 + r2/p2 + r3/p3 +//residue calculation +r1=residu(num,p1,(p2*p3)) +r2=residu(num,p2,(p1*p3)) +r3=residu(num,p3,(p1*p2)) + +disp([r1 r2 r3]',"Residues of the poles p1, p2 and p3 are") +disp([roots(p1), roots(p2), roots(p3)]',"Poles p1, p2 and p3 are at") +disp('k=[]') +//------------------------------------------------------------------ -- cgit