フィルターのクリア

Is it available to change the end of a loop for inside it?

15 ビュー (過去 30 日間)
AMINE EL MOUATAMID
AMINE EL MOUATAMID 2019 年 4 月 30 日
回答済み: NALLARASU KRISH 2023 年 5 月 30 日
ssss.PNG
ssssss.PNG
the size of my variable out changes inside the loop for so that's why I recalculate it inside it but the loop variable i stops in the first size of the variable even sizeOut changes.
can't the endval of the loop change ? or it can't ?
  4 件のコメント
Adam Danz
Adam Danz 2019 年 4 月 30 日
The break would be conditional upon the size of sizeOut. In other words,
if sizeOut(1,1) == something
break
end
AMINE EL MOUATAMID
AMINE EL MOUATAMID 2019 年 4 月 30 日
I understand but sizeOut(1,1) maybe stay in the first value and maybe changes so I can't test it with something to break the loop.
otherways the while loop is better

サインインしてコメントする。

採用された回答

Adam Danz
Adam Danz 2019 年 4 月 30 日
編集済み: Adam Danz 2019 年 4 月 30 日
You want to use a while loop for this purpose.
It might look something like this (tough to tell without seeing more of your code)
c = 2; %counter
while c <= sizeOut(1,1)
% Do something
c = c+1;
end
Another good suggestion by Stephen Cobeldick is to add a conditional break to the for-loop that exits the loop when the sizeOut variable reaches a certain size.
  3 件のコメント
Adam Danz
Adam Danz 2019 年 4 月 30 日
編集済み: Adam Danz 2019 年 4 月 30 日
A for-loop is designed to be executed a fixed number of times and once you enter the loop you cannot change the number of expected iterations. The only options are to conditionally break to leave the loop early or to continue to skip an iteration.
A while loop, on the other hand, is designed to continually iterate until a condition is met (break and continue are also options).
AMINE EL MOUATAMID
AMINE EL MOUATAMID 2019 年 4 月 30 日
thank you this is really helpfull

サインインしてコメントする。

その他の回答 (1 件)

NALLARASU KRISH
NALLARASU KRISH 2023 年 5 月 30 日
In MATLAB, end condition of a for loop cannot be updated or changed within the for loop. Once it is set during the start of the loop, it is set until it is met.
a = 1;
b = 6;
for c = a+1 : b
c
b
fprintf('here\n');
b = b-1;
end
After seeing the above code, one might think that "here" is printed only three times. But MAT thinks otherwise.
c =
2
b =
6
here
c =
3
b =
5
here
c =
4
b =
4
here
c =
5
b =
3
here
c =
6
b =
2
here

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by