PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_roots_contfn_brent (c05ay)
Purpose
nag_roots_contfn_brent (c05ay) locates a simple zero of a continuous function in a given interval using Brent's method, which is a combination of nonlinear interpolation, linear extrapolation and bisection.
Syntax
Description
nag_roots_contfn_brent (c05ay) attempts to obtain an approximation to a simple zero of the function
given an initial interval
such that
.
The same core algorithm is used by
nag_roots_contfn_brent_rcomm (c05az) whose specification should be consulted for details of the method used.
The approximation
to the zero
is determined so that at least one of the following criteria is satisfied:
(i) |
, |
(ii) |
. |
References
Brent R P (1973) Algorithms for Minimization Without Derivatives Prentice–Hall
Parameters
Compulsory Input Parameters
- 1:
– double scalar
-
, the lower bound of the interval.
- 2:
– double scalar
-
, the upper bound of the interval.
Constraint:
.
- 3:
– double scalar
-
The termination tolerance on
(see
Description).
Constraint:
.
- 4:
– double scalar
-
A value such that if
,
is accepted as the zero.
eta may be specified as
(see
Accuracy).
- 5:
– function handle or string containing name of m-file
-
f must evaluate the function
whose zero is to be determined.
[result, user] = f(x, user)
Input Parameters
- 1:
– double scalar
-
The point at which the function must be evaluated.
- 2:
– Any MATLAB object
f is called from
nag_roots_contfn_brent (c05ay) with the object supplied to
nag_roots_contfn_brent (c05ay).
Output Parameters
- 1:
– double scalar
-
The value of
evaluated at
x.
- 2:
– Any MATLAB object
Optional Input Parameters
- 1:
– Any MATLAB object
user is not used by
nag_roots_contfn_brent (c05ay), but is passed to
f. Note that for large objects it may be more efficient to use a global variable which is accessible from the m-files than to use
user.
Output Parameters
- 1:
– double scalar
-
If
or
,
x is the final approximation to the zero. If
,
x is likely to be a pole of
. Otherwise,
x contains no useful information.
- 2:
– Any MATLAB object
- 3:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Errors or warnings detected by the function:
Cases prefixed with W are classified as warnings and
do not generate an error of type NAG:error_n. See nag_issue_warnings.
-
-
Constraint: .
Constraint: .
On entry, and have the same sign with neither equalling .
- W
-
No further improvement in the solution is possible.
- W
-
The function values in the interval
might contain a pole rather than a zero. Reducing
eps may help in distinguishing between a pole and a zero.
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
Accuracy
The levels of accuracy depend on the values of
eps and
eta. If full machine accuracy is required, they may be set very small, resulting in an exit with
, although this may involve many more iterations than a lesser accuracy. You are recommended to set
and to use
eps to control the accuracy, unless you have considerable knowledge of the size of
for values of
near the zero.
Further Comments
The time taken by
nag_roots_contfn_brent (c05ay) depends primarily on the time spent evaluating
f (see
Arguments).
If it is important to determine an interval of relative length less than
containing the zero, or if
f is expensive to evaluate and the number of calls to
f is to be restricted, then use of
nag_roots_contfn_brent_rcomm (c05az) is recommended. Use of
nag_roots_contfn_brent_rcomm (c05az) is also recommended when the structure of the problem to be solved does not permit a simple
f to be written: the reverse communication facilities of
nag_roots_contfn_brent_rcomm (c05az) are more flexible than the direct communication of
f required by
nag_roots_contfn_brent (c05ay).
Example
This example calculates an approximation to the zero of within the interval using a tolerance of .
Open in the MATLAB editor:
c05ay_example
function c05ay_example
fprintf('c05ay example results\n\n');
a = 0;
b = 1;
eps = 1e-5;
eta = 0;
fprintf('\n');
[x, user, ifail] = c05ay(a, b, eps, eta, @f);
switch ifail
case {0}
fprintf('With eps = %10.2e, root = %14.5f\n', eps, x);
case {2, 3}
fprintf('With eps = %10.2e, final value = %14.5f\n', eps, x);
end
function [result, user] = f(x, user)
result = x - exp(-x);
c05ay example results
With eps = 1.00e-05, root = 0.56714
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015