Given the great range of functions that are already built into Matlab as well as the fact that additional functions can be added to the environment by means of “toolboxes” (folders containing sets of functions that depend on one another and that, as a whole, can be considered a program or functionality set of its own), Matlab offers a rudimentary but extremely helpful way for the user to inquire about available functions.
On the command line, you can enter just “help” (which calls the internal help function provided by Matlab). This will produce a list containing hyperlinks that can be clicked on, with one entry per installed toolbox, which includes the toolboxes that come with Matlab itself. Important toolboxes (and associated functions) are:
optionally cumulative
sum and product over one dimension of an array)
To get additional help on any of these functions, simply enter help FUNCTION
.
In addition to the help available within Matlab, Mathworks offers an online version of the help (which contains further examples and tips). For instance, this the online help article for the strfind function.