Effacer les filtres
Effacer les filtres

plz. help me TT I want write if(((mp(1)​>0)&(mp(1)​<140))&((m​p(2)>0)&(m​p(2)<140))​)

2 vues (au cours des 30 derniers jours)
rollcakes
rollcakes le 21 Oct 2015
Commenté : Guillaume le 21 Oct 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 commentaire
Guillaume
Guillaume le 21 Oct 2015
Modifié(e) : Guillaume le 21 Oct 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.

Connectez-vous pour commenter.

Réponse acceptée

Torsten
Torsten le 21 Oct 2015
if (mp(1) > 0) && (mp(1) < 140) && (mp(2) > 0) && (mp(2) < 140)
...
end
Best wishes
Torsten.
  2 commentaires
rollcakes
rollcakes le 21 Oct 2015
thanks!!! good!
Guillaume
Guillaume le 21 Oct 2015
Other than being more readable, how is this different from the original code that's been specified as not correct?

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by