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 --- 29/CH4/EX4.3.2/exa4_3_2.sce | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 29/CH4/EX4.3.2/exa4_3_2.sce (limited to '29/CH4/EX4.3.2') diff --git a/29/CH4/EX4.3.2/exa4_3_2.sce b/29/CH4/EX4.3.2/exa4_3_2.sce new file mode 100755 index 000000000..f91e006b1 --- /dev/null +++ b/29/CH4/EX4.3.2/exa4_3_2.sce @@ -0,0 +1,15 @@ +//Caption:overall_transmittance +// example 4.3.2 +//page 64 +syms G1 G2 H1; +// forward path denoted by P1,P2 and so on and loop by L1,L2 and so on +//path factor by D1,D2 and so on and graph determinant by D +P1=G1; +P2=G2; +L1=-G1*H1; +D1=1; +D2=1; +D=1-(L1); +Y=(P1*D1+P2*D2)/D; +Y=simple(Y); +disp(Y,"C(s)/R(s)=") \ No newline at end of file -- cgit