How to modify a variable inside of a loop and use it outside the loop

1 visualizzazione (ultimi 30 giorni)
I'm writing an algorithm right now, and I'm having trouble with my variables. For instance, the variable values modified inside of a loop are not being saved when I exit that loop. How do I get the correct number set as that variable? For example, in this loop the est_trains_per_hr is still acting as 0 after the loop
est_trains_per_hr = 0 ;
for time_num = 1 : length(times)
time = times(time_num) ;
if time >= 800 && time < 900
est_trains_per_hr = est_trains_per_hr + 1 ;
end
end

Risposte (1)

James Tursa
James Tursa il 25 Mar 2019
What does this show:
sum(times(:)>=800 & times(:)<900)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Prodotti


Release

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by