custom class documentation question

2 views (last 30 days)
mcg
mcg on 17 Apr 2020
Commented: Daniel Dolan on 11 Nov 2020
If I build a class in Matlab and type doc(class_name) the documentation comes up with information on the properties, methods, etc. of that class, somehow automatically generated from the .m code file itself. Is there a way to capture this in an .html file or a .m file that could be published into .html using publish()? With the help() command you can specify an output argument to capture the help as a character array (then fprintf() into a .m file and publish() it), but with doc() you cannot do this.
  2 Comments
Daniel Dolan
Daniel Dolan on 11 Nov 2020
com.mathworks.mlservices.MLHelpServices.setHtmlText is a static Java method.

Sign in to comment.

Answers (1)

Daniel Dolan
Daniel Dolan on 11 Nov 2020
You might take a look at the help2html function, located in the same directory as the doc function. It is an unsupported file and gould change at any time, so be wary.

Categories

Find more on Construct and Work with Object Arrays in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

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

Start Hunting!