How can I draw a bifurcation diagram of the logistic dynamical coupled logistic map lattice system in MATLAB?
40 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Harpreet
il 28 Nov 2024 alle 5:34
Commentato: William Rose
il 3 Dic 2024 alle 4:36
The logistic dynamicalcoupled logistic lattice system is
xn+1(i) = (1 − L(e))f (xn(i)) + (L(e)/2)(f (xn(i − 1)) + f (xn(i + 1)))
Here, L(e) = 3.99*e*(1 − e), 0 ≤ e ≤ 1 and f(x) is the logistic map functon
0 Commenti
Risposta accettata
William Rose
il 28 Nov 2024 alle 18:34
What have you done so far?
Your function L(e) is the logistic map function, with r=3.99. You have not specified the r-value for the logistic map function f(x)=r*x*(1-x), where 0<r<4. Therefore your system has two adjustabole parameters: r and e. Do you want to make a bifurcation diagram for r (at a fixed e) or for e (at a fixed r)?
You make the logistic map by simulating the system until it reaches a limit cycle, or until you give up, for many values of the parameter (r or e). Then you plot the parameter (r or e) on the x-axis, and the corresponding elements of the limit cycle as the corresponding y-values.
5 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Polynomials in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!