Borrar filtros
Borrar filtros

Is these two conditions okay? sentence if

2 visualizaciones (últimos 30 días)
Erwin Avendaño
Erwin Avendaño el 8 de Nov. de 2017
Comentada: Erwin Avendaño el 8 de Nov. de 2017
if (qb==2 && qd==4)

Respuesta aceptada

Roger Stafford
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
Erwin Avendaño
Erwin Avendaño el 8 de Nov. de 2017
thank you I have a question, how could I print this? 3+ 4i I have planned to do set (handles.edit8, 'string', x3, '+ i'x4) where x3 = 3 and x4 = 4 Is that okay or how?
Erwin Avendaño
Erwin Avendaño el 8 de Nov. de 2017
with print I mean print in an edit text of the guide

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Graphics Object Programming en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by