Q:

Analyzing electric circuits can be accomplished by solving sets of equations. For a particular circuit, the voltages V1, V2, and V3 are found through the system:

0

V1 = 5 -6V1 + 10V2-3V3 = 0 -V2+51V3 = 0 Put these equations in matrix form and solve in MATLAB. 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

>> A = [1 0 0; -6 10 -3; 0 -1 51];

>> b = [5;0;0];

>> v = inv(A) * b

v =

 5.0000

 3.0178

 0.0592

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now