Encyclopedia > Logistic map Computer simulation

  Article Content

Image:Logistic-burification.png

Redirected from Logistic map/Computer simulation

Burification diagram of a logistic map

Generation scripts Here are some GNU Octave scripts to experiment with the generation of bifurcation diagrams for the logistic map.


 r_min = 2.5; r_max = 4; # the range of parameter values we study
 n = 1000; # the number of parameter values we consider in this range

 t_max = 1000; # how many iterations to simulate per parameter value
 p_max = 100; # the last p_max iterations are plotted

 x0 = 0.1; # we use the same initial value x0 for all parameters.

 r = linspace(r_min, r_max, n);
 pop = zeros(p_max, n);

 for k = 1:n
   x = population(r(k), x0, t_max);
   pop(:, k) = x(t_max-p_max+1:t_max);
 end

 gset nokey;
 plot(r, pop, 'b.');

 function x =  population(r, x0, n)
 # simulates n iterations of the logistic map with parameter
 # r and initial value x0. The results are returned in the
 # array x.
   x = zeros(n, 1);
   x(1) = x0;
   for k = 1:n-1
     x(k + 1) = r * x(k) * (1 - x(k));
   end

Image links

There are no pages that link to this image.



All Wikipedia text is available under the terms of the GNU Free Documentation License

 
  Search Encyclopedia

Search over one million articles, find something about almost anything!
 
 
  
  Featured Article
242

... century Decades: 190s 200s 210s 220s 230s - 240s - 250s 260s 270s 280s 290s Years: 237 238 239 240 241 - 242 - 243 244 245 246 247 Events Patriarch Titus[?] ...

 
 
 
This page was created in 28.8 ms