Installation guide
Entering Statements in the Edito r/Debugger
Commenting Out Part of a Statement
To comment out the end of a statement in an M-file, put the comment
character,
%, b efore the comm ent. When yo u run the file, MATLAB ignores
any text on the line after the
%.
To comment out text within a multiline statement, use the ellipsis (...).
MATLAB ignores any text appearing after the
... on a line and continues
processing on the next line. This effectively makes a comment out of anything
on the current line that follows the
.... The followin g example comm en ts
out the
Middle Initial line.
MATLAB ignores the text following the ... on the line
6-19