MATLAB Function Reference
  Go to function:
    Search    Help Desk 
fmins    Examples   See Also

Minimize a function of several variables

Syntax

Description

x = fmins('fun',x0) returns a vector x which is a local minimizer of
fun(x) near .

x = fmins('fun',x0,options) does the same as the above, but uses options control parameters.

x = fmins('fun',x0,options,[],P1,P2,...) does the same as above, but passes arguments to the objective function, fun(x,P1,P2, ...). Pass an empty matrix for options to use the default value.

[x,options] = fmins(...) returns, in options(10), a count of the number of steps taken.

Arguments

x0
Starting vector.
P1,P2...
Arguments to be passed to fun.
[]
Argument needed to provide compatibility with fminu in the Optimization Toolbox.
fun
A string containing the name of the objective function to be minimized. fun(x) is a scalar valued function of a vector variable.
options
A vector of control parameters. Only four of the 18 components of options are referenced by fmins; Optimization Toolbox functions use the others. The four control options used by fmins are:

Examples

A classic test example for multidimensional minimization is the Rosenbrock banana function:


The minimum is at (1,1) and has the value 0. The traditional starting point is (-1.2,1). The M-file banana.m defines the function.

The statements

produce

This indicates that the minimizer was found to at least four decimal places in 165 steps.

Move the location of the minimum to the point [a,a^2] by adding a second parameter to banana.m.

Then the statement

sets the new parameter to sqrt(2) and seeks the minimum to an accuracy higher than the default.

Algorithm

The algorithm is the Nelder-Mead simplex search described in the two references. It is a direct search method that does not require gradients or other derivative information. If n is the length of x, a simplex in n-dimensional space is characterized by the n+1 distinct vectors which are its vertices. In two-space, a simplex is a triangle; in three-space, it is a pyramid.

At each step of the search, a new point in or near the current simplex is generated. The function value at the new point is compared with the function's values at the vertices of the simplex and, usually, one of the vertices is replaced by the new point, giving a new simplex. This step is repeated until the diameter of the simplex is less than the specified tolerance and the function values of the simplex vertices differ from the lowest function value by less than the specified tolerance, or the maximum number of function evaluations has been exceeded.

See Also

fmin        Minimize a function of one variable

References

[1] Nelder, J. A. and R. Mead, "A Simplex Method for Function Minimization," Computer Journal, Vol. 7, p. 308-313.

[2] Lagarias, Jeffrey C., James A. Reeds, Margaret H. Wright, and Paul E. Wright, "Convergence Properties of the Nelder-Mead Simplex Algorithm in Low Dimensions", May 1, 1997. To appear in SIAM Journal of Optimization.



[ Previous | Help Desk | Next ]