summaryrefslogtreecommitdiff
path: root/3673/CH2/EX2.a.5/Example_a_2_5.sce
blob: 5a4d10cd52ae1da9e1150366223e03c34cb2edae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Example 2_5 page no:90
clc;
R=16.67;
A=[75,-25,
    -58.35,25];
B=[25,
    10];
X=inv(A)*B;
I1=X(1);
I2=X(2);
Vx=I1*R;
disp(Vx,"the voltage across 16.67 ohm resistor is (in V)");