summaryrefslogtreecommitdiff
path: root/3673/CH2/EX2.a.7/Example_a_2_7.sce
blob: 60d8099362726374cfaf3a6b8a9c0c66d653264f (plain)
1
2
3
4
5
6
7
8
9
10
11
//Example 2_7 page no:91
clc;
A=[0.93,-0.1,
    -0.1,0.443];
B=[17.29,
    7.143];
X=inv(A)*B;
V1=X(1);
V2=X(2);
V=3*((0.93*V1)-(0.1*V2));
disp(V,"the voltage V in the cicuit is (in V)");