May 2018
Beginner to intermediate
364 pages
7h 43m
English
The Octave package called Optim can be downloaded easily from https://octave.sourceforge.io/optim/. The following screenshot indicates the version of the package. Note this was the version on March 1, 2018:

After downloading and installing the package (see Chapter 6, Managing Packages, for more detail on how to install an Octave package), we could use the following command lines to see some functions:
pkg load optim pkg describe -verbose optim
The following screenshot shows the output. To save space, only the top part is shown:
To find the usage of a specific function, we could use the help() function:
help fminsearch ...
Read now
Unlock full access