In Powell's method, we repeat linear search toward conjugate directions and search the minimum value of
. In linear search methods, we search the minimum value one-dimensionally along the direction vector
from a certain point
. In other words, we regard
as the function of
and search the minimum value of it. Hereafter,
represents the algorithm of
constrained Powell's method and Linear-search
represents linear search method which compares search points by
level comparisons.
is described in C like language as follows:
where
is accuracy of the search.
We may select the
unit vectors indicating the direction of each axis of
as
initial direction vectors.
We realize Linear-search by the combination of bracketing
and golden
.
Bracketing
and golden
represent algorithms of bracketing method and golden cut method which use
level comparisons as order relations, respectively. The algorithms are described in C like language as follows:
where
,
.
is accuracy of the search.