Is there a way to create "sub-folding" / "sub-sections"?

51 ビュー (過去 30 日間)
Mark Golberg
Mark Golberg 2021 年 10 月 6 日
コメント済み: Andre Zeug 2024 年 10 月 18 日
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!

回答 (2 件)

Darren Woods
Darren Woods 2024 年 6 月 7 日
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 件のコメント
Al
Al 2024 年 6 月 19 日
Yes, please add this ability!

サインインしてコメントする。


Prateek Rai
Prateek Rai 2021 年 10 月 8 日
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 件のコメント
Mark Golberg
Mark Golberg 2021 年 10 月 10 日
Thank you @Prateek Rai
Indeed I'd like to have several layers of sectioning in my MATLAB script.
But! Point is, I don't want to restrict my self only to loops , ifs , etc...
I want to have a complete freedom in defining my layers (again, similar, to writing document in WORD).
For example, I could have a code doing some Task 1.
Below that there is a section of Task 1.1
Below that there is a section of Task 1.1.1 & Task 1.1.2 & Task 1.1.3 & etc...
I'd like to have the possibilty to fold ALL the code below Task 1.1 (would hide 1.1.1 - 1.1.1)
OR
fold only 1.1.1 & 1.1.2 - and continue working on 1.1.3
Does it make more sense now?
Andre Zeug
Andre Zeug 2024 年 10 月 18 日
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).

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by