Evaluate Multiple Conditions in Expression

10 ビュー (過去 30 日間)
Roger Breton
Roger Breton 2022 年 1 月 9 日
コメント済み: the cyclist 2022 年 1 月 11 日
I've been meaning to simplify my code by combining multiple conditions into one IF statement.
This is what I'm currently using :
if IntX < 1
ah.Color=[1, 1, 1];
xlabel(ax, ' ');
return;
end
if IntX > Inner(3)
ah.Color=[1, 1, 1];
xlabel(ax, ' ');
return;
end
if IntY < 1
ah.Color=[1, 1, 1];
xlabel(ax, ' ');
return;
end
if IntY > Inner(4)
ah.Color=[1, 1, 1];
xlabel(ax, ' ');
return;
end
This is not elegant but it works. I experimented with this statement but I get an error :
if (IntX < 1) && (IntX > Inner(3)) && (IntY < 1) && (IntY > Inner(4))
ah.Color=[1, 1, 1];
xlabel(ax, ' ');
return;
end
  2 件のコメント
Torsten
Torsten 2022 年 1 月 9 日
Use || instead of &&
Voss
Voss 2022 年 1 月 9 日
If either of IntX and IntY is a vector, you'll get an error using && or ||.

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

採用された回答

the cyclist
the cyclist 2022 年 1 月 9 日
if (IntX < 1) | (IntX > Inner(3)) | (IntY < 1) | (IntY > Inner(4))
ah.Color=[1, 1, 1];
xlabel(ax, ' ');
return;
end
You should also be able to use the short-circuit operator || instead of |.
  2 件のコメント
Roger Breton
Roger Breton 2022 年 1 月 11 日
編集済み: Roger Breton 2022 年 1 月 11 日
Works like a charm -- thank you!
I'm not sure I'm clear on the short-circuit operator : is that, as soon as one condition is false, the whole expression stops being evaluated?
the cyclist
the cyclist 2022 年 1 月 11 日
You have the gist right, but in the short-circuited OR operation, it will evaluate from left-to-right until it finds a TRUE condition, because then it knows the entire expression is true.
See a fuller explanation in this section of the documentation.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by