Using IF to remove upper and lower boundaries
    6 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
Within a FOR loop, I can successfully implement a single IF statement to prevent either the upper or lower values from being manipulated like so:
     if (theta1 > 0.7297)
      continue
       end
However every attempt I have made to remove both upper and lower values has failed. Can anyone explain what is wrong with this:
   if (theta1 > 0.7297)
      else (theta1 < -0.7297)
     continue
   end
Thanks.
0 commentaires
Réponse acceptée
  Arthur
      
 le 29 Oct 2012
        So you want to continue if theta1 > 0.7297 or if theta < -0.7297? Then you could test for both in the if statement:
if (theta1 > 0.7297) || (theta1 < -0.7297)
      continue
end
Voir également
Catégories
				En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


