Is there a way to 'fold up' sections of code - like when you close up a for loop

741 vues (au cours des 30 derniers jours)
Tom
Tom le 4 Avr 2012
Commenté : Caleb le 30 Jan 2024
Is there a way to hide sections of code - like when you close up a for loop?
I have quite a long code with a few different sections, and while I'm working on one section I'd like to hide the other sections so the code is a bit more manageable to get around.
  7 commentaires
Kelvin Prosyk
Kelvin Prosyk le 9 Juil 2021
Modifié(e) : Kelvin Prosyk le 9 Juil 2021
Inserting artificial code loops inserts extraneous code and reduces readability if the code is published. The drawback of the existing %% code section approach is there is no end-section marker. It means you can't create an isolated code section in the same way as code blocks like a for loop. I'd love to seem Mathworks introduce a system of %%<section_start> and %%<section_end> tags.
Eric Daigrepont
Eric Daigrepont le 23 Jan 2022
Modifié(e) : Eric Daigrepont le 23 Jan 2022
@Kevlin Prosyk, I agree wholeheartedly. I try to use "%%" to held organize collapsible sections, but the auto-end-section significantly limits the ability to manage sections due to erratic updates and inconsistent operation. Frankly, one of the earliest languages I ever used, Pascal maybe, used "//" to comment the remainder of the line, and "/* ... */" to comment sections. I've been annoyed by any language since that did not allow the programmer to comment sections. And with the added benefit of modern code-folding,... controlling exactly how you'd like to fold you sections would add wonderfully for those of us love of clean, organized code.

Connectez-vous pour commenter.

Réponse acceptée

Daniel Shub
Daniel Shub le 4 Avr 2012
Under preferences you can enable code folding for blocks. Blocks are defined in MATLAB as sections starting with %% (I am not sure if they can have anything else on the line).
So you should be able to fold
a=1;
b=2;
x=3;
y=4;
  10 commentaires
Manuel
Manuel le 8 Nov 2023
Thank you so much!
Caleb
Caleb le 30 Jan 2024
Absolute W thank you

Connectez-vous pour commenter.

Plus de réponses (2)

Adam Spry
Adam Spry le 18 Mar 2017
Try this:
for d = 1
[Your code here]
end
its collapsable on demand and doesn't effect the code at all (someone please correct me if I'm wrong). It can be used as many times as you like for each section of the code.
  2 commentaires
Christopher Goodrich
Christopher Goodrich le 11 Avr 2017
I recently discovered this trick has its shortcomings. You can't define functions instead of control statements (even if it is just a loop that doesn't actually loop).
I wish that you could define the end of code sections so you could nest code sections inside of code sections.
Walter Roberson
Walter Roberson le 11 Avr 2017
I think you mean "inside of control statements" rather than "instead of control statements" ?

Connectez-vous pour commenter.


Ethan Duckworth
Ethan Duckworth le 25 Fév 2021

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by