summaryrefslogtreecommitdiff
path: root/3673/CH16/EX16.7/Ex16_7.sce
blob: 0ea220bd72f1a0b023407274957a8ba38a33eff9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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)");