- #1
lahuxixi
- 8
- 0
I want to make a m-file that show the behavior of the logistic map for dierent values of r using the bifurcation diagram.
This is what i currently have, but i don't know why it is wrong.
Can anyone help me?
c=0;
hold on
while c < 4
y=0.5;
for i=1:100;
y = -c*y^2 +c*y; %converge the iteration
end
for i=1:20
y = -c*y^2 +c*y;
plot(c,y,'.', 'MarkerSize',1); % plot the converged points
end
c=c+0.002;
end
This is what i currently have, but i don't know why it is wrong.
Can anyone help me?
c=0;
hold on
while c < 4
y=0.5;
for i=1:100;
y = -c*y^2 +c*y; %converge the iteration
end
for i=1:20
y = -c*y^2 +c*y;
plot(c,y,'.', 'MarkerSize',1); % plot the converged points
end
c=c+0.002;
end