Getting help for a hidden class

4 views (last 30 days)
Jim Hokanson
Jim Hokanson on 16 May 2014
Edited: Jim Hokanson on 16 May 2014
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

Answers (0)

Categories

Find more on MATLAB Report Generator in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!