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?

답변 (2개)

madhan ravi
madhan ravi 2020년 6월 11일
편집: madhan ravi 2020년 6월 11일

0 개 추천

the cyclist
the cyclist 2020년 6월 11일

0 개 추천

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.

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

질문:

G L
2020년 6월 11일

편집:

2020년 6월 11일

Community Treasure Hunt

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

Start Hunting!

Translated by