how do i direct a for loop, to end after a variable reaches a certain point say x>7200? x is being accumulated in the loop but it is just a value thats inside the loop. the loop is for i:1:7200 but x reaches 7200 first then i want it to stop
조회 수: 3 (최근 30일)
이전 댓글 표시
for i=1:n;
if (i == 1)
l=(.5+4.5*rand);
x(i,1)=l;
y(i,1)=mod(x(i),60);
else
l=(.5+4.5*rand);
x(i,1)=x(i-1,1)+l;
y(i,1)=mod(x(i),60);
end
if y(i,1)<=35
greencars(i,1)=1
else y(i,1)>35
inqueue(i,1)=1
end
end
댓글 수: 1
Matt Fig
2012년 12월 1일
George, next time you post some code, please use the {} Code button to format it so people can read it!
답변 (1개)
Image Analyst
2012년 12월 1일
Insert this at the end of the loop, just before the final end statement:
if x(i, 1) > 7200
break; % break out of loop
end
댓글 수: 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!