Is these two conditions okay? sentence if
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Erwin Avendaño
el 8 de Nov. de 2017
Comentada: Erwin Avendaño
el 8 de Nov. de 2017
if (qb==2 && qd==4)
0 comentarios
Respuesta aceptada
Roger Stafford
el 8 de Nov. de 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
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!