plz. help me TT I want write if(((mp(1)>0)&(mp(1)<140))&((mp(2)>0)&(mp(2)<140)))
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
rollcakes
am 21 Okt. 2015
Kommentiert: Guillaume
am 21 Okt. 2015
0<mp(1)<140 + 0<mp(2)<140
that write to if(here)
plz TT
if(((mp(1)>0)&(mp(1)<140))&((mp(2)>0)&(mp(2)<140)))
thats incorrect T.T
1 Kommentar
Guillaume
am 21 Okt. 2015
Bearbeitet: Guillaume
am 21 Okt. 2015
What does the '+' mean in your 0<mp(1)<140 + 0<mp(2)<140 expression? While you can add logical expression, I'm fairly certain that's not what you mean.
Your code would be a lot more readable if there wasn't so many unnecessary brackets.
if mp(1) > 0 && mp(1) < 140 && mp(2) > 0 && mp(2) < 140
is exactly the same as you've written but a lot more readable.
Finally, you'll have to explain what 'that's incorrect' means.
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!