Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How to tell MATLAB to go to the next replication i

조회 수: 1 (최근 30일)
Mikie
Mikie 2018년 3월 10일
마감: MATLAB Answer Bot 2021년 8월 20일
Hi, I am new for MATLAB. Please, help me.
for i = 1:100
....
while .....
if WHATEVER
end
end
end
If WHATEVER is not true, how can I tell MATLAB to skip to the next replication i ? Please help me. Thank you so much.

답변 (1개)

David Fletcher
David Fletcher 2018년 3월 10일
if WHATEVER=false
break;
end
  댓글 수: 4
Mikie
Mikie 2018년 3월 11일
Thank you so much. Also, how can I tell MATLAB not to keep "Empty sym: 0-by-1" to p? Skip it and collect only scalar p.
Walter Roberson
Walter Roberson 2018년 3월 11일
counter = 0;
all_p = sym([]);
for i = 1 : 100
...
if isempty(p); continue; end
counter = counter + 1;
all_p(counter) = p;
end

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by