How to make my help button will show matlab help?

后端 未结 3 1042
Happy的楠姐
Happy的楠姐 2021-01-25 22:16

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 b

3条回答
  •  暖寄归人
    2021-01-25 23:21

    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.

提交回复
热议问题