How can I use increment value for entire script instead of section?
13 次查看(过去 30 天)
显示 更早的评论
I have a large script that contains many sections (%%) that I would like to run using the "increment value and run section." However, I am interested in running the entire script, not just a section. Is there a way to change the way the "increment value" works? Currently, I can make it work but simply removing all the %% in my script so MATLAB reads the script as one giant section. This is annoy to do.
Any help would be much appreciated!
Thanks!
1 个评论
埃博拉酱
2024-10-26,15:05
What is "increment value and run section" ? I've never heard of this function.
回答(1 个)
Cris LaPierre
2024-10-28,2:31
编辑:Cris LaPierre
2024-10-28,2:33
It is not possible to modify the behavior.of this feature.
If I were in your position, my workaround would to leave the sections as they are and add a debugging flag to the top of the script with an if statement that incrments the variable if it exists in the Workspace. When the debugging flag is set to true, the code in the if statement executes (when the variable exists already). When it is false, it does not.
debugFlag = true;
if debugFlag & exist('varname','var')==1
varname = varname+1;
end
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!