Is it possible to make inactive some of lines?
3 次查看(过去 30 天)
显示 更早的评论
Assume that
A = [a*b;... %line 1
a*b^2;... %line 2
a*b^3;... %line 3
]
Is it possible to generate a command to make inactive any line, for ex. line 2 like:
A = [a*b;... %line 1
%a*b^2;... %line 2
a*b^3;... %line 3
]
Thanks,
2 个评论
回答(1 个)
Bruno Luong
2021-7-8
Put "..." (without the quotes) in front of the lines you want to hide
3 个评论
Bruno Luong
2021-7-8
Please explain of adding/removing "..." to hide/disable the lines is not suitaable for your need.
Bruno Luong
2021-7-8
Just to be sure you understand what I wrote
A = [a*b;... %line 1
... a*b^2; ... %line 2
a*b^3;... %line 3
]
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!