'Or' statement in matlab?
    5 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
How can I do this without using else if?:
if balls == 0 & ( x > 5 OR y > 7)
    run xscript
end
Thanks,
4 Commenti
  Simran Wasu
 il 20 Feb 2016
				
      Modificato: Simran Wasu
 il 20 Feb 2016
  
			use '||' for OR command (without quotes).
Risposta accettata
  Image Analyst
      
      
 il 7 Set 2012
        
      Modificato: Image Analyst
      
      
 il 7 Set 2012
  
      You need two &&:
if balls == 0 && ( x > 5 || y > 7)
    % run xscript
    xscript();
end
5 Commenti
  Image Analyst
      
      
 il 7 Set 2012
				I've seen that before - where the vertical lines don't appear. However I can't reproduce anymore. For me | appears both in regular text, and code formatted text. By the way, I edited by answer to change "run xscript" to be just "xscript" since the "run" command like you had is not needed.
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Get Started with MATLAB in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!





