How to use a boolean?

107 visualizaciones (últimos 30 días)
Chloe Owen
Chloe Owen el 28 de Feb. de 2019
Comentada: Nubu el 25 de Feb. de 2025
For the following code, I'm trying to say that if the rocket is turned on, the thrust is 1950 lb and if the rocket is turned off, the thrust is 0 lb. I have raw-coded it but I would prefer it as a function with boolean operators.
rcktOn = [0 1];
T = rcktOn*1950;
T_off = T(1)
T_on = T(2)
Is there any simple way to use booleans to convey the above information?
  2 comentarios
Guillaume
Guillaume el 28 de Feb. de 2019
Note that booleans are call logical in matlab, and have values true or false. logical is implicitly convertible to double.
Nubu
Nubu el 25 de Feb. de 2025
true

Iniciar sesión para comentar.

Respuesta aceptada

Adam
Adam el 28 de Feb. de 2019
Editada: Adam el 28 de Feb. de 2019
thrust = rocketOn * 1950
And just set rocketOn to true or false as appropriate, e.g.
>> rocketOn = true;
>> thrust = rocketOn * 1950
thrust =
1950

Más respuestas (0)

Categorías

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

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by