You are on page 1of 3

Date: 16/08/2014

Course No. EEE 212


Group No. XI



Experiment no. 01 & 02
Name of the Experiment: Introduction to MATLAB





Submitted By
Purab Ranjan Sutradhar
1106054
Section: A2
Partners ID: 1106055









Problem: Finding V0 from the following circuit using MATLAB.
:

Theory : By adopting Mesh Analysis into the following circuit we can find


V
0
mathematical expression for the three loop currents,which are:

i
1
= 5 A
-i
2
+3i
3
=5


Expressing these three equations in a matrix from gives:




A=[-1 3; 7 -4];
B=[5 50];
D=B'
X=A\D;
disp(X);


10.0000
5.0000

You might also like