Is there a way to create "sub-folding" / "sub-sections"?
37 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (2)
Darren Woods
am 7 Jun. 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.
1 Kommentar
Prateek Rai
am 8 Okt. 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 Kommentare
Andre Zeug
am 18 Okt. 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).
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!