If , while with or
2 ビュー (過去 30 日間)
古いコメントを表示
How can I put or in "IF, While" function. For example:
While a<b or C<d
...
Cheers,
回答 (1 件)
Matt Fig
2012 年 12 月 11 日
Did you look at the documentation?
doc while
In the documentation are examples.
a = 1;
b = 10;
c = 20;
d = 10000;
while a<b | c<d
a = a + 1;
c = c * a;
end
3 件のコメント
Walter Roberson
2012 年 12 月 11 日
In new versions (R2012a and later I think it is), "if" and "while" automatically short-circuit "|" and "&" operations with scalar arguments. This does not apply to "|" and "&" in any other logical expression
Jan
2012 年 12 月 11 日
@Walter: The | operator in IF expressions apply short-circuiting in Matlab 6.5 already. As far as I remember in WHILE also.
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!