how to make a single command line

1 Ansicht (letzte 30 Tage)
ajith
ajith am 4 Jun. 2013
%doubt
%regards
%make
%a single
% command line
sir my double regards how to make a all in command line for example in c language
/* doubt
regards
make
a single
command line*/ how we do it in matlab programming

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 4 Jun. 2013
If you are asking how to make a single comment from multiple lines, then use %{ to start the comment and %} to end the comment.
%{
doubt
regards
make
a single
command line
%}

Weitere Antworten (2)

David Sanchez
David Sanchez am 4 Jun. 2013
you can't do it. The closest you get is selecting all the lines you want to comment and then Ctrl+R. This will insert a "%" at the beginning of each line. CTRL+L to uncomment.

Matt J
Matt J am 4 Jun. 2013
Bearbeitet: Matt J am 4 Jun. 2013
Bracket the lines you want to comment in %{ and %}
%{
doubt
regards
make
a single
command line
%}
The %{ and %} must occupy their own lines, however.

Kategorien

Mehr zu Environment and Settings finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by