help acosh
help plot
help help
help ;
When you type "help punct" it will return help on a long list of
"punctuation" facilities. Help files are now getting long enough
to quickly scroll off the screen. If that is a problem, enter the
command
>> more on;which will turn on paging, just like the Unix "more" command. I won't tell you how to turn it off ... by now you should be able to find out those things yourself (hint: use "help").
WARNING: the help files in Matlab use capital letters for commands (for example, EIG(A) to find the eigenvalues of A), but you must use lower case letters when calling those functions (for example, eig(A)). Matlab is case-sensitive, but that does not apply in the help files. Usually any examples given in the help file do have the correct case, but in general beware of cut-and-paste from a help file's text.
Since version 5.0 the Matlab command helpwin opens up a separate window for on-line help and navigation. helpdesk brings up a Web browser that gives the full hypertext documentation. The default startup for Matlab actually creates multiple windows, a command window, a help lookup window, and a command history window. Starting up Matlab with the "-nodesktop" option suppresses those and just brings up a command line interface.
All of those resources are best used at a workstation, with one window open to the Web browser, and the other with Matlab running so you can try out commands.
Of course, there is the ancient and antique method of getting info: the newsgroup comp.soft-sys.matlab. This is closely monitored by Mathworks and they typically respond quickly and politely ... to non-trolls at least.