Matlab Resources Help Facilities


Help

Matlab has an extensive help facility, called (surprise!) help. Try finding out more about what you have seen so far using
help ;
help acosh
help plot
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: "help more").

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 show up in the help files.

In Matlab 5.0 and later versions 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 "-nojvm" I suggested suppresses those and just brings up a command line interface.


Web Resources on Matlab

The following is a partial list of some resources available for learning Matlab, grabbing Matlab files, etc. Mathworks, the company that produces Matlab, has resources on its pages but they are not well organized for trying to learn how to use the package. However, it is a good resource to see the many areas that Matlab has expanded into, and to keep track of "toolboxes". Some of the best material is from the University of Florida, particularly Kermit Sigmon's primer on Matlab.

All 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 traditional method of getting info: the newsgroup comp.soft-sys.matlab. This is closely monitored by Mathworks and they typically respond quickly and politely ... to people who don't abuse the resource.


Last updated: Wed Feb 2 09:08:28 EST 2005