Is these two conditions okay? sentence if
1 回表示 (過去 30 日間)
古いコメントを表示
if (qb==2 && qd==4)
0 件のコメント
採用された回答
Roger Stafford
2017 年 11 月 8 日
It is syntactically correct, but impossible to satisfy. You are asking the variable qb to simultaneously be equal to 2 and to 4, which is not possible. If you want it to either be equal to 2 or else to 4, you should use this:
qb==2 | qb==4
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Interactive Control and Callbacks についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!