E02AKF (PDF version)
E02 Chapter Contents
E02 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

E02AKF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

E02AKF evaluates a polynomial from its Chebyshev series representation, allowing an arbitrary index increment for accessing the array of coefficients.

2  Specification

SUBROUTINE E02AKF ( NP1, XMIN, XMAX, A, IA1, LA, X, RESULT, IFAIL)
INTEGER  NP1, IA1, LA, IFAIL
REAL (KIND=nag_wp)  XMIN, XMAX, A(LA), X, RESULT

3  Description

If supplied with the coefficients ai, for i=0,1,,n, of a polynomial px- of degree n, where
px-=12a0+a1T1x-++anTnx-,
E02AKF returns the value of px- at a user-specified value of the variable x. Here Tjx- denotes the Chebyshev polynomial of the first kind of degree j with argument x-. It is assumed that the independent variable x- in the interval -1,+1 was obtained from your original variable x in the interval xmin,xmax by the linear transformation
x-=2x-xmax+xmin xmax-xmin .
The coefficients ai may be supplied in the array A, with any increment between the indices of array elements which contain successive coefficients. This enables the routine to be used in surface fitting and other applications, in which the array might have two or more dimensions.
The method employed is based on the three-term recurrence relation due to Clenshaw (see Clenshaw (1955)), with modifications due to Reinsch and Gentleman (see Gentleman (1969)). For further details of the algorithm and its use see Cox (1973) and Cox and Hayes (1973).

4  References

Clenshaw C W (1955) A note on the summation of Chebyshev series Math. Tables Aids Comput. 9 118–120
Cox M G (1973) A data-fitting package for the non-specialist user NPL Report NAC 40 National Physical Laboratory
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  Parameters

1:     NP1 – INTEGERInput
On entry: n+1, where n is the degree of the given polynomial px-.
Constraint: NP11.
2:     XMIN – REAL (KIND=nag_wp)Input
3:     XMAX – REAL (KIND=nag_wp)Input
On entry: the lower and upper end points respectively of the interval xmin,xmax. The Chebyshev series representation is in terms of the normalized variable x-, where
x-=2x-xmax+xmin xmax-xmin .
Constraint: XMIN<XMAX.
4:     A(LA) – REAL (KIND=nag_wp) arrayInput
On entry: the Chebyshev coefficients of the polynomial px-. Specifically, element i×IA1+1 must contain the coefficient ai, for i=0,1,,n. Only these n+1 elements will be accessed.
5:     IA1 – INTEGERInput
On entry: the index increment of A. Most frequently, the Chebyshev coefficients are stored in adjacent elements of A, and IA1 must be set to 1. However, if, for example, they are stored in A1,A4,A7,, then the value of IA1 must be 3.
Constraint: IA11.
6:     LA – INTEGERInput
On entry: the dimension of the array A as declared in the (sub)program from which E02AKF is called.
Constraint: LANP1-1 ×IA1+1.
7:     X – REAL (KIND=nag_wp)Input
On entry: the argument x at which the polynomial is to be evaluated.
Constraint: XMINXXMAX.
8:     RESULT – REAL (KIND=nag_wp)Output
On exit: the value of the polynomial px-.
9:     IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. 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 -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL=1
On entry,NP1<1,
orIA1<1,
orLANP1-1×IA1,
orXMINXMAX.
IFAIL=2
X does not satisfy the restriction XMINXXMAX.

7  Accuracy

The rounding errors are such that the computed value of the polynomial is exact for a slightly perturbed set of coefficients ai+δai. The ratio of the sum of the absolute values of the δai to the sum of the absolute values of the ai is less than a small multiple of n+1×machine precision.

8  Further Comments

The time taken is approximately proportional to n+1.

9  Example

Suppose a polynomial has been computed in Chebyshev series form to fit data over the interval -0.5,2.5. The following program evaluates the polynomial at 4 equally spaced points over the interval. (For the purposes of this example, XMIN, XMAX and the Chebyshev coefficients are supplied in DATA statements. Normally a program would first read in or generate data and compute the fitted polynomial.)

9.1  Program Text

Program Text (e02akfe.f90)

9.2  Program Data

None.

9.3  Program Results

Program Results (e02akfe.r)

Produced by GNUPLOT 4.4 patchlevel 0 0 0.5 1 1.5 2 2.5 3 -0.5 0 0.5 1 1.5 2 2.5 P(x) x Example Program Evaluation of Chebyshev Representation of Polynomial

E02AKF (PDF version)
E02 Chapter Contents
E02 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012