How can I use increment value for entire script instead of section?

2 views (last 30 days)
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!

Answers (1)

Cris LaPierre
Cris LaPierre on 28 Oct 2024
Edited: Cris LaPierre on 28 Oct 2024
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

Community Treasure Hunt

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

Start Hunting!