Info
この質問は閉じられています。 編集または回答するには再度開いてください。
how i can get loop?
1 回表示 (過去 30 日間)
古いコメントを表示
If the condition on line 33 acceptable, then return to the beginning of the program else will continue, I want a loop that its the output only lines 40-45, how i can to do it ... can i get example
0 件のコメント
回答 (2 件)
Image Analyst
2018 年 2 月 20 日
編集済み: Image Analyst
2018 年 2 月 20 日
Put it inside a for or while loop. You can't get an example because I don't want to type in all your code and you didn't provide and text code that we can simply copy and paste. And that includes giving sample values for a, b, c, etc. so the code will run.
0 件のコメント
Walter Roberson
2018 年 2 月 20 日
In MATLAB, there is no direct way to "return to the beginning of the program". The closest you can get is things like
while true
...
if condition
do whatever
continue;
else
do whatever else
break;
end
end
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!