plotting nullclines in matlab

6 ビュー (過去 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 Center および File ExchangeMathematics についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by