How do I comment out a large block of code in MATLAB?
7.020 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Doug Hull
el 18 de En. de 2011
Editada: MathWorks Support Team
el 29 de Ag. de 2023
I want to do this in an easy way.
3 comentarios
Respuesta aceptada
Doug Hull
el 29 de Ag. de 2023
Editada: MathWorks Support Team
el 29 de Ag. de 2023
5 comentarios
Steven Lord
el 12 de Mzo. de 2021
That functionality is still present in releases R2020a, R2020b, and R2021a. It is possible that something about your file or how you're writing these comment delimiters is preventing them from being interpreted as block comments. For instance, %{ and %} must appear alone on a line.
x = 1
%{ start of block comment?
y = 2
%}
z = 3
%{
w = 4
v = 5
%}
Because of the text following the %{ before "y = 2" it is a regular comment, not a block comment. So we execute the line that creates the y variable.
Because there is no %{ associated with the %} before "z = 3" it too is a regular comment and the z variable is created.
The %{ and %} surrounding the lines defining the w and v do comprise a block comment, so those variables are not created.
whos
Can you show us a small code segment where you see %{ and %} not functioning as block comments?
Shapol Mohamed
el 18 de Mzo. de 2021
In Matlab 2020, you have to use ctrl+/ (cmd+/ for mac) to comment a block and to uncomment you have to use ctrl+t (cmd+t for mac).
Más respuestas (3)
CHUANQIANG ZHANG
el 10 de Mayo de 2018
Ctrl + R comment selected lines. Ctrl + T uncomment select lines.
https://stackoverflow.com/questions/30925796/is-there-a-shortcut-key-to-comment-multiple-lines-in-matlab-editor/30926004#30926004
3 comentarios
Steven Lord
el 15 de Jun. de 2023
Search the list of keyboard shortcuts for the word "comment" or for the key combination Ctrl+T and you should see the actions associated with commenting out code or that will be performed in various components of the MATLAB Desktop in the keyboard shortcut set you've told MATLAB to use.
In my MATLAB installation using the Windows keyboard shortcut set, Ctrl+T creates a new tab in the Help Browser but uncomments code when used in the Editor.
Wesam Rezk
el 30 de Mzo. de 2018
Simply start with *... and write whatever you want. This will enable you to write a very long comment line
For example *... This is a very very long comment
0 comentarios
Wick
el 1 de Mayo de 2018
Editada: Wick
el 1 de Mayo de 2018
Rather than comment large sections of code, I bypass them with the following syntax.
for dont_go_here = []
% code I want to skip including all nested comments, etc. can stay here unmolested
end
This assumes that your if, for, case, try, and switch commands within that block are all terminated properly with an 'end' Otherwise the script won't parse.
1 comentario
Ver también
Categorías
Más información sobre Entering Commands 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!