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 --- 1760/CH7/EX7.5/EX7_5.sce | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 1760/CH7/EX7.5/EX7_5.sce (limited to '1760/CH7/EX7.5/EX7_5.sce') diff --git a/1760/CH7/EX7.5/EX7_5.sce b/1760/CH7/EX7.5/EX7_5.sce new file mode 100755 index 000000000..9a04800c7 --- /dev/null +++ b/1760/CH7/EX7.5/EX7_5.sce @@ -0,0 +1,10 @@ + //EXAMPLE 7-5 PG NO-439-440 +Z11=-0.4; +Z21=-3.2; +Z12=0.4; +Z22=1.2; +Z=[Z11 Z12;Z21 Z22]; +X=det(Z); +disp(' delta is = '+string(X)+''); +Y=[(Z22/X) (-Z12/X);(-Z21/X) (Z11/X)]; +disp(' ADMITTANCE is = '+string(Y)+''); -- cgit