Is these two conditions okay? sentence if
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Erwin Avendaño
am 8 Nov. 2017
Kommentiert: Erwin Avendaño
am 8 Nov. 2017
if (qb==2 && qd==4)
0 Kommentare
Akzeptierte Antwort
Roger Stafford
am 8 Nov. 2017
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
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Interactive Control and Callbacks finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!