how to make a single command line

1 次查看(过去 30 天)
%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

采纳的回答

Walter Roberson
Walter Roberson 2013-6-4
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
%}

更多回答(2 个)

David Sanchez
David Sanchez 2013-6-4
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 2013-6-4
编辑:Matt J 2013-6-4
Bracket the lines you want to comment in %{ and %}
%{
doubt
regards
make
a single
command line
%}
The %{ and %} must occupy their own lines, however.

类别

Help CenterFile Exchange 中查找有关 Environment and Settings 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by