Getting help for a hidden class
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (0)
Ver también
Categorías
Más información sobre MATLAB Report Generator en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!