如何让我的帮助按钮显示 matlab 帮助?

发布于 2024-10-20 14:59:34 字数 102 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

困倦 2024-10-27 14:59:34

您可以将按钮的 Callback 属性设置为 'doc(''plot'')'。按下按钮时将执行此命令。

您可以使用 GUIDE 中的属性编辑器设置回调。如果您想以编程方式执行此操作,可以像这样生成帮助按钮:

fh = figure
uicontrol('style','pushbutton','string','help','callback','doc(''plot'')','parent',fh)

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:

fh = figure
uicontrol('style','pushbutton','string','help','callback','doc(''plot'')','parent',fh)
⊕婉儿 2024-10-27 14:59:34

您可能会发现以下文章相关。

不幸的是,经过多年的服务,似乎,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.

两相知 2024-10-27 14:59:34

您可以使用eval。例如,

  • eval('helpplot') 将在命令窗口中显示有关 help 命令的帮助。

  • eval('docplot') 将打开 plot 命令的文档帮助文件。

You can use eval. For example,

  • eval('help plot') will show help on the help command in the command window.

  • eval('doc plot') will open a document help file for the plot command.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文