As per my understanding, you would like to plot the bifurcation diagram of the fractional discrete Hénon map. Kindly refer the following steps to understand about the same.
1. Define the standard Map:
The classical Hénon map is:
x(n+1) = 1 - a*x(n)^2 + y(n);
2. Choose a Fractional Difference Method:
One common approach is using Caputo-like fractional differences for discrete systems. The fractional weights can be computed as follows -
w(k+1) = (-1)^k * gamma(alpha+1) / (gamma(k+1) * gamma(alpha - k + 1));
3. Sweep the Bifurcation Parameter
Sweep the parameter ‘a’ over a desired range. For each value, initialize the system and iterate the fractional Hénon map using the precomputed weights. After discarding initial transients, store the remaining x values and plot them against ‘a’ to build the bifurcation diagram.
4. Plot the Bifurcation Diagram
Once you’ve collected the long-term x values for each a, you can plot them like this:
plot(a_values, x_values, '.', 'MarkerSize', 1);
xlabel('a'); ylabel('x'); title('Bifurcation Diagram');
I hope this helps.