diff options
Diffstat (limited to '1760/CH7/EX7.5/EX7_5.sce')
-rwxr-xr-x | 1760/CH7/EX7.5/EX7_5.sce | 10 |
1 files changed, 10 insertions, 0 deletions
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)+'');
|