mark several line of code as comment

7 views (last 30 days)
hi,
I know that the % sign is used to make code to comment, but unfortunately I am not able to do this for a whole paragraph, is there a way to mark a whole paragraph as comment?

Accepted Answer

FruitsLord
FruitsLord on 15 Apr 2013
CTRL+R is the shortcut

More Answers (1)

Anand
Anand on 15 Apr 2013
If you want a comment block you could do this:
%{
...
CODE THAT SHOULDN'T RUN
...
...
%}
Note that the '%{' needs to be a new line with nothing else on that line.
  4 Comments
Sean de Wolski
Sean de Wolski on 15 Apr 2013
Also, right clicking gives you these shortcuts

Sign in to comment.

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!