Is there a way to programmatically display documentation pages for the methods of the Simulink.SimulationInput class rather than the page for class?
7 次查看(过去 30 天)
显示 更早的评论
This is a niche issue I ran into, but I set up a hyperlink in a Live Script to run...
matlab: doc setPostSimFcn
... to try to link other users to the documentation for the method, setPostSimFcn, of the Simulink.SimulationInput class since there are strict rules for using this method. When the user clicks on this hyperlink, they are directed to the Help Browser equivalent of this online Documentation page (the page about the class to which the method belongs) rather than this page (the page about the method). I could always set the hyperlink to open the online Documentation page in a web browser, but I like to keep documentation in the Help Browser. Is there another way to call the doc function to link to the method page rather than the class page?
4 个评论
Fangjun Jiang
2020-6-1
Indeed! You can report to Mathworks tech support to see if it's a bug. I have one workaround.
采纳的回答
Fangjun Jiang
2020-6-1
编辑:Fangjun Jiang
2020-6-1
Use web() instead of doc()
web(fullfile(docroot, 'simulink/slref/setpostsimfcn.html'))
web(fullfile(docroot, 'simulink/slref/simulink.simulationinput-class.html'))
You can use doc() to bring up the page and then right click, "Get Page Address".
In Live Editor, still use "matlab: web()"
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Audio and Video Data 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!