Is these two conditions okay? sentence if
    1 visualizzazione (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Erwin Avendaño
 il 8 Nov 2017
  
    
    
    
    
    Commentato: Erwin Avendaño
 il 8 Nov 2017
            if (qb==2 && qd==4)
0 Commenti
Risposta accettata
  Roger Stafford
      
      
 il 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
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Language Support 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!