How to use while true loop

回答 (1 件)

Walter Roberson
Walter Roberson 2020 年 9 月 19 日

0 投票

while true
x = rand();
if x < 0.1; break; end
end

1 件のコメント

Walter Roberson
Walter Roberson 2020 年 9 月 19 日
As I posted recently when someone asked about "do while", the pattern in MATLAB is:
do while
some statements
if ~condition; break; end
end
Another example:
while true
a = randi(20); b = randi(20); c = randi(20);
if a^2+b^2 == c^2; break; end
end
This finds a random pythagorean triple.

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

カテゴリ

ヘルプ センター および File ExchangeLoops and Conditional Statements についてさらに検索

質問済み:

2020 年 9 月 19 日

コメント済み:

2020 年 9 月 19 日

Community Treasure Hunt

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

Start Hunting!

Translated by