Getting help for a hidden class
4 次查看(过去 30 天)
显示 更早的评论
I like to make classes hidden when I don't want them to be visible to tab complete. I was surprised to find that with Matlab 2014a (and most likely previous versions) that calling help on a method of a hidden class does not return any help information. Is there some way besides help() of getting this information?
classdef (Hidden) test < handle
methods
function testing()
%Some help text
end
end
end
help(test.testing) %Gives nothing
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 MATLAB Report Generator 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!