Target Language Compiler |
 |
Line Continuation
You can use the C language \
character or the MATLAB sequence ...
to continue a line. If a directive is too long to fit conveniently on one line, this allows you to split up the directive on to multiple lines. For example:
%roll sigIdx = RollRegions, lcv = RollThreshold, block,\
"Roller", rollVars
or
%roll sigIdx = RollRegions, lcv = RollThreshold, block,...
"Roller", rollVars
Note
Use \ to suppress line feeds to the output and the ellipsis (...) to indicate line continuation. Note that \ and the ellipsis (...) cannot be used inside strings.
|
| Comments | | Target Language Values |  |