How to modify a variable inside of a loop and use it outside the loop
8 views (last 30 days)
Show older comments
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
0 Comments
Answers (1)
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!