NAG Library Routine Document
e02aff
(dim1_cheb_glp)
1
Purpose
e02aff computes the coefficients of a polynomial, in its Chebyshev series form, which interpolates (passes exactly through) data at a special set of points. Least squares polynomial approximations can also be obtained.
2
Specification
Fortran Interface
Integer, Intent (In) | :: |
nplus1 | Integer, Intent (Inout) | :: |
ifail | Real (Kind=nag_wp), Intent (In) | :: |
f(nplus1) | Real (Kind=nag_wp), Intent (Out) | :: |
a(nplus1) |
|
C Header Interface
#include nagmk26.h
void |
e02aff_ (
const Integer *nplus1,
const double f[],
double a[],
Integer *ifail) |
|
3
Description
e02aff computes the coefficients
, for
, in the Chebyshev series
which interpolates the data
at the points
Here
denotes the Chebyshev polynomial of the first kind of degree
with argument
. The use of these points minimizes the risk of unwanted fluctuations in the polynomial and is recommended when the data abscissae can be chosen by you, e.g., when the data is given as a graph. For further advantages of this choice of points, see
Clenshaw (1962).
In terms of your original variables,
say, the values of
at which the data
are to be provided are
where
and
are respectively the upper and lower ends of the range of
over which you wish to interpolate.
Truncation of the resulting series after the term involving
, say, yields a least squares approximation to the data. This approximation,
, say, is the polynomial of degree
which minimizes
where the residual
, for
.
The method employed is based on the application of the three-term recurrence relation due to
Clenshaw (1955) for the evaluation of the defining expression for the Chebyshev coefficients (see, for example,
Clenshaw (1962)). The modifications to this recurrence relation suggested by Reinsch and Gentleman (see
Gentleman (1969)) are used to give greater numerical stability.
For further details of the algorithm and its use see
Cox (1974) and
Cox and Hayes (1973).
Subsequent evaluation of the computed polynomial, perhaps truncated after an appropriate number of terms, should be carried out using
e02aef.
4
References
Clenshaw C W (1955) A note on the summation of Chebyshev series Math. Tables Aids Comput. 9 118–120
Clenshaw C W (1962) Chebyshev Series for Mathematical Functions Mathematical tables HMSO
Cox M G (1974) A data-fitting package for the non-specialist user Software for Numerical Mathematics (ed D J Evans) Academic Press
Cox M G and Hayes J G (1973) Curve fitting: a guide and suite of algorithms for the non-specialist user NPL Report NAC26 National Physical Laboratory
Gentleman W M (1969) An error analysis of Goertzel's (Watt's) method for computing Fourier coefficients Comput. J. 12 160–165
5
Arguments
- 1: – IntegerInput
-
On entry: the number of data points (one greater than the degree of the interpolating polynomial).
Constraint:
.
- 2: – Real (Kind=nag_wp) arrayInput
-
On entry: for
,
must contain
the value of the dependent variable (ordinate) corresponding to the value
of the independent variable (abscissa)
, or equivalently to the value
of your original variable
. Here
and
are respectively the upper and lower ends of the range over which you wish to interpolate.
- 3: – Real (Kind=nag_wp) arrayOutput
-
On exit: is the coefficient in the interpolating polynomial, for .
- 4: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation 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 argument, 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:
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
Accuracy
The rounding errors committed are such that the computed coefficients are exact for a slightly perturbed set of ordinates . The ratio of the sum of the absolute values of the to the sum of the absolute values of the is less than a small multiple of , where is the machine precision.
8
Parallelism and Performance
e02aff is not threaded in any implementation.
The time taken is approximately proportional to .
For choice of degree when using the routine for least squares approximation, see
Section 3.2 in the E02 Chapter Introduction.
10
Example
Determine the Chebyshev coefficients of the polynomial which interpolates the data , for , where and . Evaluate, for comparison with the values of , the resulting Chebyshev series at , for .
The example program supplied is written in a general form that will enable polynomial interpolations of arbitrary data at the cosine points
, for
, to be obtained for any
(
). Note that
e02aef is used to evaluate the interpolating polynomial. The program is self-starting in that any number of datasets can be supplied.
10.1
Program Text
Program Text (e02affe.f90)
10.2
Program Data
Program Data (e02affe.d)
10.3
Program Results
Program Results (e02affe.r)