如何让我的帮助按钮显示 matlab 帮助?
Hye Guyz..如果我想为我的人物制作一个帮助按钮。如果用户按下帮助按钮,我该如何制作,它会出现matlab助手,例如产品帮助,功能浏览器等。我如何链接它?有没有关于制作帮助按钮的教程?
Hye guyz.. If i want to make a help button for my figure. How can i make if the user pressed the help button, it will appear matlab helper which is like product help, function browser and etc.. How can i link it? Is there any tutorials regarding making a help button?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将按钮的
Callback
属性设置为'doc(''plot'')'
。按下按钮时将执行此命令。您可以使用 GUIDE 中的属性编辑器设置回调。如果您想以编程方式执行此操作,可以像这样生成帮助按钮:
You can set the
Callback
property of the button to'doc(''plot'')'
. This command will be executed when the button is pressed.You can set the callback with the property editor in GUIDE. If you want to do it programmatically, you can generate the help button like this:
您可能会发现以下文章相关。
不幸的是,经过多年的服务,似乎,MathWorks 决定最终删除此功能。我觉得这是最令人遗憾的,因为它是一个很棒的功能。
You may find the following article relevant.
Unfortunately, it appears that after many years of service, MathWorks has decided to finally remove this feature. I find this most regrettable because it is a fantastic feature.
您可以使用
eval
。例如,eval('helpplot')
将在命令窗口中显示有关help
命令的帮助。eval('docplot')
将打开plot
命令的文档帮助文件。You can use
eval
. For example,eval('help plot')
will show help on thehelp
command in the command window.eval('doc plot')
will open a document help file for theplot
command.