index exceeds matrix dimensions
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
P=0.4;
T=0.5;
a=2;
for i=1:max_it
if x(i)>=0 && x(i)<P %(Error Here)
x(i+1)=x(i)/P;
end
if x(i)>=P && x(i)<=T
x(i+1)=(x(i)-T)/(P-T);
end
if x(i)>=T && x(i)<=1
x(i+1)=a*((x(i)-T)/1-T)*(1-(x(i)-T)/(1-T));
end
% if x(i)>=1-P && x(i)<1
% x(i+1)=(1-x(i))/P;
% end
G(i) =x(i);
end
0 件のコメント
回答 (2 件)
Walter Roberson
2019 年 12 月 24 日
0 投票
We do not know what you initialized x as.
You probably did not pre-allocate x; you are probably counting on it growing as you go. However notice that you only ever grow x conditionally: you stop growing x if you encounter an element that is negative or greater than 1.
0 件のコメント
deepak kumar
2019 年 12 月 24 日
編集済み: Walter Roberson
2019 年 12 月 24 日
1 件のコメント
Walter Roberson
2019 年 12 月 24 日
The second x you generate is negative, and as I pointed out before, you stop growing x as soon as you find a negative value.
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!