Skipping part of code

27 次查看(过去 30 天)
I've wrote a script that can be splitted in independent parts. Sometimes I don't want to execute all of them, and so I'm using on each part of the script a simple check of the type
if flag
% do what you have to do
end
where flag can be zero (if I want to skip the current part) or one (if I want to execute the current part).
This trick works fine but is pretty annoying because when I set a zero flag the analyzer returns a warning. I don't want suppress such warning of the analyzer, so I'm looking for a new solution (entirely procedural) that does not generate any warning.
  2 个评论
dpb
dpb 2023-5-23
if flag
% do what you have to do
else
end
will probably be enough to suppress the warning. You can also suppress the warning on the specific line(s) with the %#ok comment/directive.
Nathan Hardenberg
Nathan Hardenberg 2023-5-23
putting the else statement still produces the warning. But good to know with the %#ok comment

请先登录,再进行评论。

采纳的回答

Nathan Hardenberg
Nathan Hardenberg 2023-5-23
You could do it with a while loop. This does not produce a warning. And don't forget to put in the break statement at the end of the loop 😉
flag = 0;
while flag
% do what you have to do
a = 123
break
end
disp('end')
end

更多回答(1 个)

dpb
dpb 2023-5-23
The other way that fools the code analyzer is to insert one level of indirection...the following doesn't generate the warning whether DBG is True or False...
DEBUGFLAG=[True|False]; % set the state desired
flag=DEBUGFLAG; % assign state to the logic variable..
....
if flag
% do what you have to do
end
The possible problem with the above is, of course, if you have multiple sections to set independently.
I'd probably just choose to ignore the warnings for a case like this since know what it is am trying to do.
  1 个评论
Walter Roberson
Walter Roberson 2023-5-23
Ah yes, the technique of baffling the analyzer with bovine excrement ;-)

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by