function y=logisticper6(x) %Finding a period 6 point in the period 6 window. You have to run %this many time with the syntax x=logisticper6(x) mu=3.63; temp=x; for i=1:6 temp=mu*temp*(1-temp); end; y=temp;