Is there a way to create "sub-folding" / "sub-sections"?
36 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I know I can create sections in my script editor with
%%
Question is, can I make several layers of 'sectioning'?
I mean, similar to headings in WORD...
Something like:
%%_1
%%_1.1
%%_1.1.1
that way I could organize, divide & fold my code as I please...
Thank you!
0 comentarios
Respuestas (2)
Darren Woods
el 7 de Jun. de 2024
Raising this thread again.
Other IDEs, such as Spyder for python, allow for the use of multiple subsection levels, e.g. %%, %%%, %%%%. These are conveniently indented in the code outline pane and all levels can be expanded and collapsed. Not so in Matlab? This seems like an easy functionality to add.
Cheers,
Darren.
Prateek Rai
el 8 de Oct. de 2021
To my understanding, you want to make several layers of sectioning in a MATLAB script.
This is possible when you have loop (such as for loop), conditional statement (such as an if statement) or functions in the script.
You can refer to Create and Run Sections in Code MathWorks documentation page to learn more on the behavior of sections in functions or behavior of sections in loops and conditional statements.
2 comentarios
Andre Zeug
el 18 de Oct. de 2024
As workaround I do:
%% Section (1)
...
if 1
%% Subsection (1.1)
...
%% Subsection (1.2)
...
end
%% Section (2)
...
This increases the readability of my code (when using code folding).
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!