MATLAB Function Reference Previous page   Next Page
fminbnd

Minimize a function of one variable on a fixed interval

Syntax

Description

fminbnd finds the minimum of a function of one variable within a fixed interval.

x = fminbnd(fun,x1,x2) returns a value x that is a local minimizer of the function that is described in fun in the interval x1 <= x <= x2. fun is a function handle. See Function Handles in the MATLAB Programming documentation for more information.

Parameterizing Functions Called by Function Functions, in the MATLAB mathematics documentation, explains how to provide additional parameters to the function fun, if necessary.

x = fminbnd(fun,x1,x2,options) minimizes with the optimization parameters specified in the structure options. You can define these parameters using the optimset function. fminbnd uses these options structure fields:

Display
Level of display. 'off' displays no output; 'iter' displays output at each iteration; 'final' displays just the final output; 'notify' (default) displays output only if the function does not converge.
FunValCheck
Check whether objective function values are valid. 'on' displays a warning when the objective function returns a value that is complex or NaN. 'off' displays no warning.
MaxFunEvals
Maximum number of function evaluations allowed.
MaxIter
Maximum number of iterations allowed.
OutputFcn
Specify a user-defined function that the optimization function calls at each iteration.
TolX
Termination tolerance on x.

[x,fval] = fminbnd(...) returns the value of the objective function computed in fun at x.

[x,fval,exitflag] = fminbnd(...) returns a value exitflag that describes the exit condition of fminbnd:

1
fminbnd converged to a solution x based on options.TolX.
0
Maximum number of function evaluations or iterations was reached.
-1
Algorithm was terminated by the output function.
-2
Bounds are inconsistent (ax > bx).

[x,fval,exitflag,output] = fminbnd(...) returns a structure output that contains information about the optimization:

output.algorithm
Algorithm used
output.funcCount
Number of function evaluations
output.iterations
Number of iterations
output.message
Exit message

Arguments

fun is the function to be minimized. fun accepts a scalar x and returns a scalar f, the objective function evaluated at x. The function fun can be specified as a function handle for an M-file function

where myfun.m is an M-file function such as

or as a function handle for an anonymous function:

Other arguments are described in the syntax descriptions above.

Examples

x = fminbnd(@cos,3,4) computes to a few decimal places and gives a message on termination.

computes to about 12 decimal places, suppresses output, returns the function value at x, and returns an exitflag of 1.

The argument fun can also be a function handle for an anonymous function. For example, to find the minimum of the function on the interval (0,2), create an anonymous function f

Then invoke fminbnd with

The result is

The value of the function at the minimum is

If fun is parameterized, you can use anonymous functions to capture the problem-dependent parameters. For example, suppose you want to minimize the objective function myfun defined by the following M-file function.

Note that myfun has an extra parameter a, so you cannot pass it directly to fminbind. To optimize for a specific value of a, such as a = 1.5.

  1. Assign the value to a.
  2. Call fminbnd with a one-argument anonymous function that captures that value of a and calls myfun with two arguments:

Algorithm

fminbnd is an M-file. The algorithm is based on golden section search and parabolic interpolation. Unless the left endpoint x1 is very close to the right endpoint x2, fminbnd never evaluates fun at the endpoints, so fun need only be defined for x in the interval x1 < x < x2. If the minimum actually occurs at x1 or x2, fminbnd returns an interior point at a distance of no more than 2*TolX from x1 or x2, where TolX is the termination tolerance. See [1] or [2] for details about the algorithm.

Limitations

The function to be minimized must be continuous. fminbnd may only give local solutions.

fminbnd often exhibits slow convergence when the solution is on a boundary of the interval.

fminbnd only handles real variables.

See Also

fminsearch, fzero, optimset, function_handle (@), anonymous functions

References

[1]  Forsythe, G. E., M. A. Malcolm, and C. B. Moler, Computer Methods for Mathematical Computations, Prentice-Hall, 1976.

[2]  Brent, Richard. P., Algorithms for Minimization without Derivatives, Prentice-Hall, Englewood Cliffs, New Jersey, 1973


Previous page  flow fminsearch Next page

© 1994-2005 The MathWorks, Inc.