필터 지우기
필터 지우기

Bifurcation Diagram for system of ODEs

조회 수: 2 (최근 30일)
Eleanor Lee
Eleanor Lee 2020년 2월 19일
편집: Eleanor Lee 2020년 2월 19일
We are trying to plot a bifurcation diagram for the Fitz-Hugh Nagumo model: This is our function - (these parameter values show chaotic behaviour)
We understand that we probably need to use loops to create the birfurcation diagram and were going to use the parameter a to vary against, but we can't figure out how to do this in MATLAB. Any help would be appreciated.
function dv=myode3(t,v)
dv=zeros(2,1);
c=0.757;
b=0.124;
a=0.191;
f=0.1297;
l=(a/(2*pi*f))*cos(2*pi*f*t);
e=0.12;
dv(1)=v(1)*((1-v(1))*(v(1)-b))-v(2)+l;
dv(2)=e*(v(1)-c*v(2));
end

답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by