Code not running when using &&
Ältere Kommentare anzeigen
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
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Language Fundamentals finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!