Question: Heres my code so far yet its not running on MATLAB, can someone please look over what I have along with my answers to the

Heres my code so far yet its not running on MATLAB, can someone please look over what I have along with my answers to the problem in question to see where my code is messing up?
function IVP_Solver2D()
y0=[3-21];
function dydt=IVPfct(t,y)
dydt=nblmx[y(4)+y(1); -y(73)+-y(12)];
end
t0=0;
tF=75;
dt=0.01;
[t y]=ode45(@IVPfct,[t0:dt:tF],y0);
yExact=0*y;
size(yExact)
size(y)
size(t)
yExact(:,1)=exp(-4*t).*((3*cos(3*t))+sin(3*t));
yExact(:,2)=exp(-4*t).*((-21*cos(3*t))-(17*sin(3*t)));
figure(2)
hold on
plot(t,y(:,1),'b');
plot(t,y(:,2),'b');
plot(t,yExact(:,1),':r');
plot(t,yExact(:,2),':r');
hold off;
end
*Let me please emphasize that I only need help with the code thank you*
Heres my code so far yet its not running on

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!