Exiting a loop once condition is met

I am trying to write output to a file using if loops such as the one below
if (x(i+1) >= 65.0) && (x(i+1) <= 75.0)
fprintf(fid, '%.2f ', w(i+1), y(i+1), 70, pi*(z(i+1))^2);
fprintf(fid, '\n');
break
end
however, this stops the entire code from iterating until completion. I have tried a similar loop using while but this wrote out multiple records when I just want one written for each loop and then exit the print loop and continue with the main code. How does one accomplish this?

답변 (1개)

Walter Roberson
Walter Roberson 2014년 2월 26일

0 개 추천

Perhaps you want continue instead of break

댓글 수: 1

Andre
Andre 2014년 2월 26일
Using continue within the if loop has the same result as using the while loop unfortunately and turns while loops into infinite loops using my conditions.

댓글을 달려면 로그인하십시오.

카테고리

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

질문:

2014년 2월 26일

댓글:

2014년 2월 26일

Community Treasure Hunt

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

Start Hunting!

Translated by