diff options
Diffstat (limited to '3673/CH16/EX16.7/Ex16_7.sce')
-rw-r--r-- | 3673/CH16/EX16.7/Ex16_7.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3673/CH16/EX16.7/Ex16_7.sce b/3673/CH16/EX16.7/Ex16_7.sce new file mode 100644 index 000000000..0ea220bd7 --- /dev/null +++ b/3673/CH16/EX16.7/Ex16_7.sce @@ -0,0 +1,20 @@ +//Example 16_7 page no:758
+clc;
+//given
+Z11x=3;
+Z12x=2;
+Z21x=2;
+Z22x=3;
+Z11y=15;
+Z21y=5;
+Z22y=25;
+Z12y=5;
+//calculating the parameters
+Z11=Z11x+Z11y;
+Z12=Z12x+Z12y;
+Z21=Z21x+Z21y;
+Z22=Z22x+Z22y;
+disp(Z11,"the parameter Z11 is (in ohm)");
+disp(Z21,"the parameter Z21 is (in ohm)");
+disp(Z22,"the parameter Z22 is (in ohm)");
+disp(Z12,"the parameter Z12 is (in ohm)");
|