Reputation: 11
If I use the 'help' command in the matlab command window, the output will also pop up in the command window. Is there a way to make it pop up in a separate window? Only way I found is to use 'help' from the UI and then dock it somewhere. But the help text that pops up in that case is not exactly the same and takes up more space.. Cheers, frommage
Upvotes: 1
Views: 176
Reputation: 680
You can use evalc to redirect command window output to a variable instead:
A = evalc('help mean');
Then maybe use msgbox to display in a new window?
msgbox(A);
Probably not exactly a full solution, since there is some html in the 'help' output and msgbox doesn't process the html, but only displays it as text.
Upvotes: 1