If , while with or

4 visualizaciones (últimos 30 días)
jamaledin
jamaledin el 11 de Dic. de 2012
How can I put or in "IF, While" function. For example:
While a<b or C<d
...
Cheers,
  1 comentario
Jan
Jan el 11 de Dic. de 2012
Reading the documentation has massive advantages.

Iniciar sesión para comentar.

Respuestas (1)

Matt Fig
Matt Fig el 11 de Dic. de 2012
Did you look at the documentation?
doc while
In the documentation are examples.
a = 1;
b = 10;
c = 20;
d = 10000;
while a<b | c<d
a = a + 1;
c = c * a;
end
  3 comentarios
Walter Roberson
Walter Roberson el 11 de Dic. de 2012
In new versions (R2012a and later I think it is), "if" and "while" automatically short-circuit "|" and "&" operations with scalar arguments. This does not apply to "|" and "&" in any other logical expression
Jan
Jan el 11 de Dic. de 2012
@Walter: The | operator in IF expressions apply short-circuiting in Matlab 6.5 already. As far as I remember in WHILE also.

Iniciar sesión para comentar.

Categorías

Más información sobre Get Started with MATLAB 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