NAG Library Routine Document
E02ALF
1 Purpose
E02ALF calculates a minimax polynomial fit to a set of data points.
2 Specification
INTEGER |
N, M, IFAIL |
REAL (KIND=nag_wp) |
X(N), Y(N), A(M+1), REF |
|
3 Description
Given a set of data points
, for
, E02ALF uses the exchange algorithm to compute an
th-degree polynomial
such that
is a minimum.
The routine also returns a number whose absolute value is the final reference deviation (see
Section 5). The routine is an adaptation of
Boothroyd (1967).
4 References
Boothroyd J B (1967) Algorithm 318 Comm. ACM 10 801
Stieffel E (1959) Numerical methods of Tchebycheff approximation On Numerical Approximation (ed R E Langer) 217–232 University of Wisconsin Press
5 Parameters
- 1: – INTEGERInput
-
On entry: , the number of data points.
Constraint:
.
- 2: – REAL (KIND=nag_wp) arrayInput
-
On entry: the values of the coordinates,
, for .
Constraint:
.
- 3: – REAL (KIND=nag_wp) arrayInput
-
On entry: the values of the coordinates,
, for .
- 4: – INTEGERInput
-
On entry: , where is the degree of the polynomial to be found.
Constraint:
.
- 5: – REAL (KIND=nag_wp) arrayOutput
-
On exit: the coefficients
of the minimax polynomial, for .
- 6: – REAL (KIND=nag_wp)Output
-
On exit: the final reference deviation, i.e., the maximum deviation of the computed polynomial evaluated at
from the reference values
, for
.
REF may return a negative value which indicates that the algorithm started to cycle due to round-off errors.
- 7: – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. If you are unfamiliar with this parameter you should refer to
Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is
.
When the value is used it is essential to test the value of IFAIL on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6 Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
Errors or warnings detected by the routine:
-
On entry, .
Constraint: .
-
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, and .
Constraint: .
-
On entry, , and .
Constraint: .
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.8 in the Essential Introduction for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.7 in the Essential Introduction for further information.
Dynamic memory allocation failed.
See
Section 3.6 in the Essential Introduction for further information.
7 Accuracy
This is dependent on the given data points and on the degree of the polynomial. The data points should represent a fairly smooth function which does not contain regions with markedly different behaviours. For large numbers of data points (, say), rounding error will affect the computation regardless of the quality of the data; in this case, relatively small degree polynomials () may be used when this is consistent with the required approximation. A limit of is placed on the degree of polynomial since it is known from experiment that a complete loss of accuracy often results from using such high degree polynomials in this form of the algorithm.
8 Parallelism and Performance
E02ALF is not threaded by NAG in any implementation.
E02ALF makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the
X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the
Users' Note for your implementation for any additional implementation-specific information.
The time taken increases with .
10 Example
This example calculates a minimax fit with a polynomial of degree to the exponential function evaluated at points over the interval . It then prints values of the function and the fitted polynomial.
10.1 Program Text
Program Text (e02alfe.f90)
10.2 Program Data
Program Data (e02alfe.d)
10.3 Program Results
Program Results (e02alfe.r)