How to plot 2 differential equations

조회 수: 27 (최근 30일)
Az Zahra Hazimah
Az Zahra Hazimah 2020년 6월 15일
댓글: Ameer Hamza 2020년 6월 15일
there are 2 equations dx/dt = 0.5x-0.01xy ; dy/dt = -0.5y+0.01xy ; How to plot (t,y) and (t,x) together? With t[0-40] and x(t=0)=80 ; y(t=0)=100

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 6월 15일
See ode45()
tspan = [0, 40];
ic = [80; 100];
[t, Z] = ode45(@odeFun, tspan, ic);
x = Z(:,1); % x solution
y = Z(:,2); % y solution
hold on
plot(t, x, 'ro-');
plot(t, y, 'bv-');
legend({'x', 'y'})
function dZdt = odeFun(t, Z)
% Z(1) => x, Z(2) => y
x = Z(1);
y = Z(2);
dxdt = 0.5*x - 0.01*x*y;
dydt = -0.5*y + 0.01*x*y;
dZdt = [dxdt; dydt];
end
  댓글 수: 2
Az Zahra Hazimah
Az Zahra Hazimah 2020년 6월 15일
Thankyouuuuuu so much!!!
Ameer Hamza
Ameer Hamza 2020년 6월 15일
I am glad to be of help!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Mathematics에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by