Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

4/25/19 8:13 PM C:\Users\Ho\Desktop...\DEdef_scripfile.

m 1 of 1

domain= [0 10];
IC1=0;
IC2=0;
IC3=1;
IC4=0;
IC5=0.5102;
IC6=-0.6159;
IC=[IC1 IC2 IC3 IC4 IC5 IC6];
[IVsol,DVsol]=ode23('DEdef', domain, IC);
plot(IVsol, DVsol(:,1),'k');
hold on
plot(IVsol, DVsol(:,2),'r');
plot(IVsol, DVsol(:,3),'b');
plot(IVsol, DVsol(:,4),'g');
legend('t-x','t-y','t-a','t-b','t-c','t-d')

You might also like