Code not running when using &&
Mostrar comentarios más antiguos
Why is my code not running when using a && operator??
for i = 1:length (Power); if Power (i,1) >= 0.3*(max(Power)); Power_Boolean(i,1) = 1; else Power_Boolean(i,1) = 0; end end
for i = 1:length (RPM_Boolean); if (RPM_Boolean == 1) & (Torque_Boolean == 1) & (Power_Boolean == 1); Condition(i,1) = 1; else Condition (i,1) = 0; end end
I want to have the values where all three conditions are met
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Language Fundamentals en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!