e04bb searches for a minimum, in a given finite interval, of a continuous function of a single variable, using function and first derivative values. The method (based on cubic interpolation) is intended for functions which have a continuous first derivative (although it will usually work if the derivative has occasional discontinuities).
Syntax
C# |
---|
public static void e04bb( E04..::..E04BB_FUNCT funct, ref double e1, ref double e2, ref double a, ref double b, ref int maxcal, out double x, out double f, out double g, out int ifail ) |
Visual Basic |
---|
Public Shared Sub e04bb ( _ funct As E04..::..E04BB_FUNCT, _ ByRef e1 As Double, _ ByRef e2 As Double, _ ByRef a As Double, _ ByRef b As Double, _ ByRef maxcal As Integer, _ <OutAttribute> ByRef x As Double, _ <OutAttribute> ByRef f As Double, _ <OutAttribute> ByRef g As Double, _ <OutAttribute> ByRef ifail As Integer _ ) |
Visual C++ |
---|
public: static void e04bb( E04..::..E04BB_FUNCT^ funct, double% e1, double% e2, double% a, double% b, int% maxcal, [OutAttribute] double% x, [OutAttribute] double% f, [OutAttribute] double% g, [OutAttribute] int% ifail ) |
F# |
---|
static member e04bb : funct : E04..::..E04BB_FUNCT * e1 : float byref * e2 : float byref * a : float byref * b : float byref * maxcal : int byref * x : float byref * f : float byref * g : float byref * ifail : int byref -> unit |
Parameters
- funct
- Type: NagLibrary..::..E04..::..E04BB_FUNCTYou must supply this method to calculate the values of and at any point in .It should be tested separately before being used in conjunction with e04bb.
A delegate of type E04BB_FUNCT.
- e1
- Type: System..::..Double%
- e2
- Type: System..::..Double%On entry: the absolute accuracy to which the position of a minimum is required. e2 should be no smaller than .
- a
- Type: System..::..Double%On entry: the lower bound of the interval containing a minimum.On exit: an improved lower bound on the position of the minimum.
- b
- Type: System..::..Double%On entry: the upper bound of the interval containing a minimum.On exit: an improved upper bound on the position of the minimum.
- maxcal
- Type: System..::..Int32%On entry: the maximum number of calls of funct to be allowed.Constraint: . (Few problems will require more than .)On exit: the total number of times that funct was actually called.
- x
- Type: System..::..Double%On exit: the estimated position of the minimum.
- f
- Type: System..::..Double%On exit: the function value at the final point given in x.
- g
- Type: System..::..Double%On exit: the value of the first derivative at the final point in x.
- ifail
- Type: System..::..Int32%On exit: unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).
Description
e04bb is applicable to problems of the form:
when the first derivative can be calculated. The method normally computes a sequence of values which tend in the limit to a minimum of subject to the given bounds. It also progressively reduces the interval in which the minimum is known to lie. It uses the safeguarded cubic-interpolation method described in Gill and Murray (1973).
You must supply a funct to evaluate and . The parameters e1 and e2 together specify the accuracy
to which the position of the minimum is required. Note that funct is never called at a point which is closer than to a previous point.
If the original interval contains more than one minimum, e04bb will normally find one of the minima.
References
Gill P E and Murray W (1973) Safeguarded steplength algorithms for optimization using descent methods NPL Report NAC 37 National Physical Laboratory
Error Indicators and Warnings
Note: e04bb may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the method:
On entry, , or .
- The number of calls of funct has exceeded maxcal. This may have happened simply because maxcal was set too small for a particular problem, or may be due to a mistake in funct. If no mistake can be found in funct, restart e04bb (preferably with the values of a and b given on exit from the previous call of e04bb).
Accuracy
If is -unimodal for some , where , then, on exit, approximates the minimum of in the original interval with an error less than .
Parallelism and Performance
None.
Further Comments
Timing depends on the behaviour of , the accuracy demanded and the length of the interval . Unless and can be evaluated very quickly, the run time will usually be dominated by the time spent in funct.
If has more than one minimum in the original interval , e04bb will determine an approximation (and improved bounds and ) for one of the minima.
If e04bb finds an such that for some , the interval will be regarded as containing a minimum, even if is less than and only due to rounding errors in the method. Therefore funct should be programmed to calculate as accurately as possible, so that e04bb will not be liable to find a spurious minimum. (For similar reasons, should be evaluated as accurately as possible.)
Example
A sketch of the function
shows that it has a minimum somewhere in the range . The following program shows how e04bb can be used to obtain a good approximation to the position of a minimum.