Optimization: principles and algorithms, by Michel Bierlaire
|
Exact line search using golden section. More...
Go to the source code of this file.
Functions | |
function | goldenSection (in obj, in l, in u, in eps) |
Find the global minimum of ![]() ![]() ![]() ![]() | |
Exact line search using golden section.
Definition in file goldenSection.m.
function goldenSection | ( | in | obj, |
in | l, | ||
in | u, | ||
in | eps | ||
) |
Find the global minimum of on
, where
is strictly unimodular on
. If the function is not strictly unimodular, the result is unspecified.
obj | the name of the Octave function defining h(x) |
l | the lower bound of the interval |
u | the upper bound of the interval |
eps | tolerance. |