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 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



