summaryrefslogtreecommitdiff
path: root/3673/CH16/EX16.10/Ex16_10.sce
blob: 2fe3f8ac14cd8d8afcb6372871f276d3832a5866 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Example 16_10 page no:762
clc;
//given
Y11=2.5;
Y21=-1;
Y12=-1;
Y22=5;
Y1=Y11+Y21;
Y2=-Y12;
Y3=Y22+Y12;
disp(Y1,"the parameter Y1 is (in mho)");
disp(Y2,"the parameter Y2 is (in mho)");
disp(Y3,"the parameter Y3 is (in mho)");
//in text book Y12 is calculated wrongly