blob: 3b569b06fe78a17aacb667acd7d9379359ab85cc (
plain)
1
2
3
4
5
6
7
8
9
|
clc
//ex2.14
//taking mesh currents i1, i2 and i3 in clockwise direction
disp('The matrix form is')
disp('RI=V')
disp('where the matrices are defined as')
disp('R=[R2+R4+R5,-R2,-R5;-R2,R1+R2+R3,-R3;-R5,-R3,R3+R5+R6]')
disp('I=[i1;i2;i3]')
disp('V=[-VA+VB;VA;-VB]')
|