return to a previous statement

조회 수: 67 (최근 30일)
Ace_ventura
Ace_ventura 2015년 3월 27일
댓글: Image Analyst 2020년 11월 26일
Guys,in my code I have assigned some values to certain variables and then I did some analysis.The results of analysis, are then checked for some conditions.When the condition is not met, the values will have to be re assigned.My confusion is ,how to go back to the line where values have to be assigned. eg
a=value1 ;b=value2;
%analysis
if (condition)
% code
else %go back to the statement where new values will be assigned i.e at beginning
end
  댓글 수: 1
shalvi singh
shalvi singh 2019년 1월 8일
Hello guys,In my code I have assigned some values to the variables and did analysis and then checked for one variable.If condition met with condition1 then I wanted to assign some statement to a variable and if met with condition2 then wanted to assign some other statement and after both if statements I wanted to run the code from starting,eg;
X=1;Y=1;
%Analysis
if (condition1)
statement1(%go back to starting of the code)
elseif (condition)
statement2(%go back to starting of the code)
end

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

채택된 답변

James Tursa
James Tursa 2015년 3월 27일
편집: James Tursa 2015년 3월 27일
while( true )
a = value1; b = value2;
% analysis
if( condition )
% code
break
end
end
If the condition is met, the code will break out of the while loop.
If the condition is not met, the code will automatically loop back to the beginning of the while loop.
Note: This loop construct is typically known as a DO-UNTIL loop.
  댓글 수: 5
Abel Z
Abel Z 2020년 11월 26일
break doens't work on " if %condition " loop that's my problem...
Image Analyst
Image Analyst 2020년 11월 26일
Post your code in a new question.

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

추가 답변 (0개)

카테고리

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