Running an if function

1 visualización (últimos 30 días)
AA
AA el 21 de En. de 2015
Comentada: Geoff Hayes el 21 de En. de 2015
Hi, I want to run an If function. So if x<3 then I want function "Runningwater" to be executed. How can I implement this as code?
thanks guys

Respuesta aceptada

Geoff Hayes
Geoff Hayes el 21 de En. de 2015
AA - conditional control with an if, see flow control for details, can be written as
if x < 3
Running water;
end
  2 comentarios
AA
AA el 21 de En. de 2015
thanks and how about if i want an 'or' or 'and' condition.
if x<3 "and" y>4 Running water; end
or
if x<3 "or" y>4 Running water; end
Geoff Hayes
Geoff Hayes el 21 de En. de 2015
The double ampersand is used for and, and the double pipe for or. For the and, you would do
if x<3 && y>4
Runningwater;
end
For the or, you would do
if x<3 || y>4
Runningwater;
end

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Dynamic System Models 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