Two loop combination circuit simulated with matrix math

I am trying to find the I1 and I2 (current) of this cicuit using a marix math program.
with the varibles
B1 = +10 V, B2 = +25V, R1 = 12 Ω, R2 = 21Ω, and R3 = 7Ω
I made this bad atempt at it with
I1
I2
B = [10; 25]
I = [I1; I2]
R = [12 21 7]
In = inv(R)*B
I got stuck on it and am not sure I know what I am doing.
any sugestions or examples would help.

댓글 수: 2

Start by deriving two loop equations using the Kirchhoff's voltage law. Next, rewrite the equations in matrix equation form, A*x = B (which you have already learned in Linear Algebra). Then, solve for x (the currents) using the linsolve() command.
Sean
Sean 2026년 2월 24일 19:21
Thank you I will work on it

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

도움말 센터File Exchange에서 Circuits and Systems에 대해 자세히 알아보기

제품

질문:

2026년 2월 24일 15:32

댓글:

2026년 2월 24일 19:21

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by