How to convert from a for loop to a while loop
Show older comments
i got stuck how to change this code from for loop to a while loop ,may someone help

4 Comments
James Tursa
on 28 Apr 2020
Please don't post code as pictures ... we can't copy & run pictures. Post code as text and format it with the CODE button.
abood sal
on 28 Apr 2020
Edited: per isakson
on 28 Apr 2020
Geoff Hayes
on 29 Apr 2020
abood - which for loop do you want to convert to a while loop? All three?
abood sal
on 30 Apr 2020
Answers (1)
Eva-Maria Weiss
on 30 Apr 2020
Edited: Eva-Maria Weiss
on 30 Apr 2020
j = 1
while j <= 59
COPOALL(j,1) = COPOALL(j,1) + AllstudentsResult(j+3,i);
j = j + 1;
end
Maybe something like that? The same for the other for loops....
But why to replace? :)
Good luck!!!
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!