Matlab Report Code

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

MATLAB REPORT

Matlab Input:

clc
clear all
close all

A=[59 -12 0;-1/6 1.3 -2/15;0 -1 1]


B=[600 0 0]'
U=inv(A)

X=inv(A)*B

V1=25
V2=X(1)
V3=X(2)
V4=X(3);

I1=(V1-V2)/46000
I2=V2/48000
I3=(V2-V3)/92000
I4=V3/(46000/3)
I5=(V3-V4)/(161000)

I=I2+I3+I4+I5
Matlab Output:

You might also like