How to get documentation of methods?
4 views (last 30 days)
Show older comments
Hello,
I am a quite experienced user of MATLAB and am programming myself using OOP in MATLAB. I want to prepare some information for MATLAB and programming newbies about how to use objects in MATLAB. They should not need anything to know about how to program classes in MATLAB. But I want to show them how to watch and change object properties and how to use class methods. I would like to take the class VideoReader as an example which should be easy understandable. Now I cam across the question of how one can easily find out 1) which methods the class has and 2) how to use these methods ( e.g. exact meaning, parameters).
What I know:
- if I type my object name and dot and press tab, I can see all properties and methods. Usually, for classes implemented by MATLAB, the method names are lowercase while the property names are uppercase.
- I know the functions methods and methodsview but they don't show me the meaning of each method
Also, I find the result of 'doc VideoReader' not very helpful in this context.
Do I overlook something?
0 Comments
Answers (1)
Steven Lord
on 13 Apr 2016
To get help for the methods of the name class, specify
help name.methodname
Use this like:
help VideoReader.hasFrame
Not all methods will have documentation, extensive help text, or even any help text at all. In particular, methods that users shouldn't have to invoke directly may not have much help (since you probably shouldn't be trying to use it directly.)
0 Comments
See Also
Categories
Find more on Software Development Tools in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!