How to plot bifurcation with Delay Differential equations?
古いコメントを表示
I want to draw the bifurcation diagram for the model.

All parameters are positve constant.
The value of parameters are as:
A1 = 0.8463, A2 = 0.6891, K = 1.2708, beta1 = 0.4110, beta2 = 0.1421,
The diagram are vary tau from 68 to 72 in steps of 0.001. For inital conditions X(0) = 0.26 and Y(0) = 0.58.
Please ansers me for Matlab code to plot the bifurcation diagrams.
7 件のコメント
Alan Stevens
2020 年 11 月 14 日
What is the definition of the bifurcation point here?
Kitipol Jankaew
2020 年 11 月 16 日
Alan Stevens
2020 年 11 月 16 日
How do you decide that has happened here?
Kitipol Jankaew
2020 年 11 月 17 日
Kitipol Jankaew
2020 年 11 月 17 日
編集済み: Kitipol Jankaew
2020 年 11 月 17 日
kaushik dehingia
2021 年 2 月 11 日
移動済み: Dyuman Joshi
2024 年 3 月 15 日
Can anyone share the Bifurcation diagram code for a delayed system? I t will be very helpful for me.
kaushik dehingia
2021 年 2 月 11 日
Can anyone share me the bifurcation code?
採用された回答
その他の回答 (1 件)
Priya Verma
2024 年 3 月 15 日
0 投票
In question, the denominator term is define in first delay variable term. Why are you all this term is defining in second delay term.
i. e. fy =@(t,x,y) A2*x*y/(1+y)-b2*y; in this denominator term is (1+y) .....?
A2*xd*yd/(1+yd)-b2*y; in this denominator term is (1+yd) .....?
please, explain...!
21 件のコメント
Torsten
2024 年 3 月 15 日
Which code are you referring to where both of these lines appear ?
Priya Verma
2024 年 3 月 15 日

in second dde equation ...why are you defining denomenatoinator term in second delay varuabiable in matlab code ?
Priya Verma
2024 年 3 月 15 日
variable *
Torsten
2024 年 3 月 15 日
Z(1) equals X(t-tau), Z(2) equals Y(t-tau) in the code.
Thus in MATLAB notation with xy(1) = X and xy(2) = Y:
dxydt(1) = xy(1)*(1-xy(1)/K)-A1*xy(1)*xy(2)/(1+xy(1))-b1*xy(1)
dxydt(2) = A2*Z(1)*Z(2)/(1+Z(1))-b2*xy(2)
Priya Verma
2024 年 3 月 16 日
Yes, now correct 💯
Priya Verma
2024 年 3 月 16 日
Thank you,
Priya Verma
2024 年 3 月 16 日
May you provide MATLAB code to plot graph between two different lags (x-axis tau1 and y-axais tau2) in dde?
Torsten
2024 年 3 月 16 日
I don't understand what you mean by "graph between two different lags". Your differential equations only have one lag, namely tau.
Priya Verma
2024 年 3 月 16 日
I am taking about this model.

Priya Verma
2024 年 3 月 16 日
In this model tau1 and tau2 two lags are given. So, how to plot graph between these two delays?
Torsten
2024 年 3 月 16 日
dde23 gives solutions for X-,X+,Y,M and P as functions of t.
If you want to plot the solutions between tau1 and tau2 (assuming tau1 < tau2), restrict the plot to the interval [tau1 tau2] by setting xlim([tau1 tau2]).
Priya Verma
2024 年 3 月 17 日
But, i don't understand, how to plot it.
tau1 = 2;
tau2 = 4;
fun = @(t,y) y;
tspan = [0 5];
y0 = 1;
sol = ode45(fun,tspan,y0);
plot(sol.x,sol.y(1,:))
xlim([tau1 tau2])
grid on
Priya Verma
2024 年 3 月 17 日
Have you taken tau2 on x-axis and tau1 on y-axis?
Torsten
2024 年 3 月 17 日
tau1 and tau2 are just two numbers used in the delay differential equations (like tau1 = 1 and tau2 = 2). What do you want to plot there ?
Priya Verma
2024 年 3 月 24 日
I want to plot domain of stability region with respect to tau1 and tau2 (i.e. on x-axis tau1 and on y-axis tau2) for the above model.
Torsten
2024 年 3 月 24 日
I have no experience with stability regions for delay differential equations with respect to the delay vector. How do you determine this region numerically ?
Priya Verma
2024 年 3 月 25 日
How to plot this type of graph for dde ?
Torsten
2024 年 3 月 25 日
Looks like a plot of a solution variable at a certain time (I don't know which time) if the delay tau2 is varied from 0 to 200.
Priya Verma
2024 年 3 月 26 日
Is there any code, package, etc to fit the parameter values of dde?
Priya Verma
2024 年 3 月 26 日
or find tau value according to model?
カテゴリ
ヘルプ センター および File Exchange で 2-D and 3-D Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



