clear all r=3.55 ; figure; xlist=rand; for t=1:100 xlist(t+1)=r*xlist(t)*(1-xlist(t)) ; end plot(xlist,'-k.','MarkerSize',20) ; hold on ; axis([0 Inf 0 1]); ylabel('x','FontSize',20) xlabel('n','FontSize',20) set(gca,'FontSize',20)