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:
belongs to book: MATLAB: A Practical Introduction to Programming and Problem Solving|Stormy Attaway|Fourth Edition| Chapter number:14| Question number:32.14
All Answers
total answers (1)
>> 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