Thanks all of you for answering so quickly. Sadly I really wanted all in one line, but the option you guys gave me serves perfectly fine.
Can I comment only a section or part of a line?
16 次查看(过去 30 天)
显示 更早的评论
Example of what I wish to do:
plot(x1,y1,{comment only inside brackets},x2,y2);
Is there any way to comment only specific parts of a line of code/text while the rest stays uncommented?
Also /* */ only seems to work on c code not on all text, and I wish to do this as I showed above on a plot.
采纳的回答
更多回答(2 个)
Voss
2022-4-2
I think the best you can do is this:
plot(x1,y1, ...{comment only inside brackets},
x2,y2);
0 个评论
Alan Stevens
2022-4-2
Like this:
x = linspace(0,2*pi,100);
y1 = sin(x);
y2 = cos(x);
plot(x,y1,... % comment
x,y2)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!