DavidMXG
Bifurcation diagram, colour coded, for the logistic map
// en.wikipedia.org/wiki/Logistic_map
// en.wikipedia.org/wiki/Bifurcation_diagram
// Chaos. Bifurcation diagram of the Logistic Map.
// Program written in C to display in colour characteristics of iteration of the equation
// x2 = k* x1 * (1 - x1*x1*x1)
// The equation is iterated for each value of k along the horizontal axis.
// The vertical axis is a plot of the x values obtained on iteration for a value of k.
// The colour indicates how many times a point was plotted - on a scale
// through the colour spectrum, from red to violet to white.
The program written in C is available.
Bifurcation diagram, colour coded, for the logistic map
// en.wikipedia.org/wiki/Logistic_map
// en.wikipedia.org/wiki/Bifurcation_diagram
// Chaos. Bifurcation diagram of the Logistic Map.
// Program written in C to display in colour characteristics of iteration of the equation
// x2 = k* x1 * (1 - x1*x1*x1)
// The equation is iterated for each value of k along the horizontal axis.
// The vertical axis is a plot of the x values obtained on iteration for a value of k.
// The colour indicates how many times a point was plotted - on a scale
// through the colour spectrum, from red to violet to white.
The program written in C is available.