필터 지우기
필터 지우기

how to give end condition to for loop

조회 수: 5 (최근 30일)
Rakesh R
Rakesh R 2019년 3월 3일
답변: Sheng Chen 2019년 3월 3일
for e = (-246200:-246100)
for f = 224169
e
f
h = ((e*def)+f)
if h==138010
return;
end
end
end
  댓글 수: 1
Rik
Rik 2019년 3월 3일
And your question is?
There are multiple things that I would have written differently, but depending on the context this code should work.

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

채택된 답변

Image Analyst
Image Analyst 2019년 3월 3일
Try this:
bailOut = false;
def = -1
for e = -246200:-246100
for f = 138000 : 224169
h = ((e*def)+f);
fprintf('e = %d, f = %d, h = %d\n', e, f, h);
if h >= 138010 % Or h == 138010 if you're really super certain!
bailOut = true;
break; % Break out of the f loop.
end
end
% Bail out of the e loop, if needed
if bailOut
break;
end
end
fprintf('Done!\n');

추가 답변 (1개)

Sheng Chen
Sheng Chen 2019년 3월 3일
You already terminate your code by "return" if h equals 138010.
I assume you are asking how to terminate the inner for loop:
for f = 224169
....
end
You can put a "break" in this for loop: Terminate execution of for or while loop
for e = (-246200:-246100)
for f = 224169
e
f
h = ((e*def)+f)
if h==138010
break;
end
end
end

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by