exiting code if condition is met

조회 수: 4 (최근 30일)
Max
Max 2015년 11월 11일
댓글: Thorsten 2015년 11월 12일
I have written a bunch of code but I would like to ignore it if and a condition is met. so for
if length(dict)=1
newguess=dict
end
%bunch of code
I want to ignore all that code if my if statement is met and just stop if length(dict)=1

채택된 답변

Thorsten
Thorsten 2015년 11월 11일
if length(dict)=1
newguess=dict
else
%bunch of code
end
  댓글 수: 3
Thorsten
Thorsten 2015년 11월 12일
n = numel(dict);
Thorsten
Thorsten 2015년 11월 12일
n = numel(dict);

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by