Can any one help me to plot bifurcation diagram for the system function
1 回表示 (過去 30 日間)
古いコメントを表示
function xdot = fzr(t, x)
r=5;k=830;b=0.011;e=0.1;c=0.4;d1=0.5;d=0.5;g=0.0092;h=0.09;v=1.58;m=0;v1=0;
xdot = zeros(3,1);
xdot(1)= r*x(1)*(1-(x(1)+x(2))/k)-c*x(1)*x(2)-b*x(1)*x(3)+m+v1*x(2);
xdot(2)= c*x(1)*x(2)-e*x(2)*x(3)-d1*x(2)-v1*x(2);
xdot(3)= g*x(1)*x(3)+h*x(2)*x(3)-d*x(3)-o*((x(1)+x(2))/(v+x(1)+x(2)))*x(3);
with o as paprameter
0 件のコメント
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Nonlinear Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!