criteria to use a while-loop

I want to compare the difference between a for-loop and a while-loop.
What are criteria to use a while-loop?

Antworten (2)

madhan ravi
madhan ravi am 11 Jun. 2020
Bearbeitet: madhan ravi am 11 Jun. 2020

0 Stimmen

the cyclist
the cyclist am 11 Jun. 2020

0 Stimmen

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.

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

G L
am 11 Jun. 2020

Bearbeitet:

am 11 Jun. 2020

Community Treasure Hunt

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

Start Hunting!

Translated by