What is the difference between " while 1" and "while true", Should I use one over the other?
조회 수: 10 (최근 30일)
이전 댓글 표시
I'd like to know the difference between while 1 and while true and in which cases I should use one over the other. Thank you
댓글 수: 0
채택된 답변
James Tursa
2022년 7월 26일
편집: James Tursa
2022년 7월 26일
1 is a double class scalar and true is a logical class scalar, so the check for "non-zero" is slightly different for each even though they both accomplish the same thing. For all we know the parser might even optimize this away into a simple GOTO at the end of the loop. But since you are using the value in a logical context, using true probably makes more sense. I suppose checking a 1-byte integer value in the background (logical) might be ever so slightly faster than checking an 8-byte floating point value in the background (double) also, although for an interpreted language like MATLAB I doubt you could tell the difference in timing.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!