How to convert from a for loop to a while loop
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
i got stuck how to change this code from for loop to a while loop ,may someone help![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/288419/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/288419/image.png)
4 commentaires
Geoff Hayes
le 29 Avr 2020
abood - which for loop do you want to convert to a while loop? All three?
Réponses (1)
Eva-Maria Weiss
le 30 Avr 2020
Modifié(e) : Eva-Maria Weiss
le 30 Avr 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!!!
0 commentaires
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!