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 个)

Cris LaPierre
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

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by