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
You can use eval. For example,
eval
eval('help plot') will show help on the help command in the command window.
eval('help plot')
help
eval('doc plot') will open a document help file for the plot command.
eval('doc plot')
plot