How to skip lines to execute/run?
조회 수: 38 (최근 30일)
이전 댓글 표시
HI all
I have a simple question. I want to put a line before a section of my program that if its value is for example "No" then skip some or rest of the lines in the program. I mean like:
YesNo = "No" % Yes or No
if YesNo == "No"
...skip...
...skip...
OR
if YesNo == "Yes"
...run...
...run...
so, is there any command that skips the rest of the lines to be executed?
PS. I don't have loops to use the continue command.
Thank you very much.
댓글 수: 3
답변 (3개)
Brent Kostich
2020년 5월 29일
The solution to your problem depends on what you mean by "skip". If you want a segment of code that runs for one case, and different segment of code that runs for another, then a simple if-else statement would work:
flag = true;
if flag
% code inside this block will run
else
% code inside this block will not run
end
% ...
% [some more code]
Using the if-else statemtent will run one bit of code and not the other, then it will continue to run any code that is after it. However, if you are trying to set up a flag that skips all the rest of the code, then put all your code in a function and use a return statement, like so:
function [out_args] = someFunction(in_args)
% ... beginning code
flag = true;
if flag
return
end
% ... rest of code
In this case, any code above the if-statement will run. If the flag value is true then the function will terminate and not run any of the later code. If the flag value is false then the code will continue to run to the end of the function.
If you use a function be sure to output some intermediate value for out_args (if necessary) when you use the return statement.
댓글 수: 0
Tommy
2020년 5월 28일
return % ?
Or have your if block encompass the lines to be skipped and change the condition to the opposite of your condition for skipping.
댓글 수: 0
Rik
2020년 5월 28일
You should be using strcmp to compare strings or chars, but otherwise what you describe is exactly what you need to do (well, one of the things you could do):
SomeFlag=false;
if SomeFlag
%code that will not run
else
%code that will run
end
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Install Products에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!