criteria to use a while-loop
Show older comments
I want to compare the difference between a for-loop and a while-loop.
What are criteria to use a while-loop?
Answers (2)
madhan ravi
on 11 Jun 2020
Edited: madhan ravi
on 11 Jun 2020
0 votes
"What are criteria to use a while-loop?"
If you don't know when the condition is satisfied.
the cyclist
on 11 Jun 2020
0 votes
As a general rule, you will use a for loop when you know ahead of time how many iterations you want, and a while loop when you don't, but instead base the number of iterations on some condition that will get triggered during the loop itself.
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!