plotting nullclines in matlab

조회 수: 2 (최근 30일)
Alex Masciovecchio
Alex Masciovecchio 2020년 9월 27일
댓글: David Goodmanson 2020년 9월 28일
beta = 0.0004 ;
k = 4000 ;
delta = 0.0225;
S = [0: 150];
I1 = (1-(S/k))/(1/k + beta);
plot(S,I1)
hold on;
y = ylim ;
plot([50 50],[y(1),y(2)],'-.g')
xlabel('S');
ylabel('I');
title('Phase Plane Plot');
plot(S(51),I1(51),'r*')
legend('S Nullclines','I Nullclines','Equilibrium Point');
hold on;
i was wondering if this code made sense
  댓글 수: 1
David Goodmanson
David Goodmanson 2020년 9월 28일
Hi Alex,
could you post the original equations that this is based on?

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

답변 (0개)

카테고리

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

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by