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

NAG Library Routine Document

E02AJF

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

E02AJF determines the coefficients in the Chebyshev series representation of the indefinite integral of a polynomial given in Chebyshev series form.

2  Specification

SUBROUTINE E02AJF ( NP1, XMIN, XMAX, A, IA1, LA, QATM1, AINTC, IAINT1, LAINT, IFAIL)
INTEGER  NP1, IA1, LA, IAINT1, LAINT, IFAIL
REAL (KIND=nag_wp)  XMIN, XMAX, A(LA), QATM1, AINTC(LAINT)

3  Description

E02AJF forms the polynomial which is the indefinite integral of a given polynomial. Both the original polynomial and its integral are represented in Chebyshev series form. If supplied with the coefficients ai, for i=0,1,,n, of a polynomial px of degree n, where
px=12a0+a1T1x-++anTnx-,  
the routine returns the coefficients ai, for i=0,1,,n+1, of the polynomial qx of degree n+1, where
qx=12a0+a1T1x-++an+1Tn+1x-,  
and
qx=pxdx.  
Here Tjx- denotes the Chebyshev polynomial of the first kind of degree j with argument x-. It is assumed that the normalized 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  
and that you require the integral to be with respect to the variable x. If the integral with respect to x- is required, set xmax=1 and xmin=-1.
Values of the integral can subsequently be computed, from the coefficients obtained, by using E02AKF.
The method employed is that of Chebyshev series (see Chapter 8 of Modern Computing Methods (1961)), modified for integrating with respect to x. Initially taking an+1=an+2=0, the routine forms successively
ai=ai-1-ai+1 2i ×xmax-xmin2,  i=n+1,n,,1.  
The constant coefficient a0 is chosen so that qx is equal to a specified value, QATM1, at the lower end point of the interval on which it is defined, i.e., x-=-1, which corresponds to x=xmin.

4  References

Modern Computing Methods (1961) Chebyshev-series NPL Notes on Applied Science 16 (2nd Edition) HMSO

5  Parameters

1:     NP1 – INTEGERInput
On entry: n+1, where n is the degree of the given polynomial px. Thus NP1 is the number of coefficients in this polynomial.
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: XMAX>XMIN.
4:     ALA – REAL (KIND=nag_wp) arrayInput
On entry: the Chebyshev coefficients of the polynomial px. Specifically, element i×IA1+1 of A must contain the coefficient ai, for i=0,1,,n. Only these n+1 elements will be accessed.
Unchanged on exit, but see AINTC, below.
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. See also Section 9.
Constraint: IA11.
6:     LA – INTEGERInput
On entry: the dimension of the array A as declared in the (sub)program from which E02AJF is called.
Constraint: LA1+NP1-1×IA1.
7:     QATM1 – REAL (KIND=nag_wp)Input
On entry: the value that the integrated polynomial is required to have at the lower end point of its interval of definition, i.e., at x-=-1 which corresponds to x=xmin. Thus, QATM1 is a constant of integration and will normally be set to zero by you.
8:     AINTCLAINT – REAL (KIND=nag_wp) arrayOutput
On exit: the Chebyshev coefficients of the integral qx. (The integration is with respect to the variable x, and the constant coefficient is chosen so that qxmin equals QATM1). Specifically, element i×IAINT1+1 of AINTC contains the coefficient ai, for i=0,1,,n+1. A call of the routine may have the array name AINTC the same as A, provided that note is taken of the order in which elements are overwritten when choosing starting elements and increments IA1 and IAINT1: i.e., the coefficients, a0,a1,,ai-2 must be intact after coefficient ai is stored. In particular it is possible to overwrite the ai entirely by having IA1=IAINT1, and the actual array for A and AINTC identical.
9:     IAINT1 – INTEGERInput
On entry: the index increment of AINTC. Most frequently the Chebyshev coefficients are required in adjacent elements of AINTC, and IAINT1 must be set to 1. However, if, for example, they are to be stored in AINTC1,AINTC4,AINTC7,, then the value of IAINT1 must be 3. See also Section 9.
Constraint: IAINT11.
10:   LAINT – INTEGERInput
On entry: the dimension of the array AINTC as declared in the (sub)program from which E02AJF is called.
Constraint: LAINT1+NP1 ×IAINT1.
11:   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,
orXMAXXMIN,
orIA1<1,
orLANP1-1×IA1,
orIAINT1<1,
orLAINTNP1×IAINT1.
IFAIL=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.8 in the Essential Introduction for further information.
IFAIL=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.7 in the Essential Introduction for further information.
IFAIL=-999
Dynamic memory allocation failed.
See Section 3.6 in the Essential Introduction for further information.

7  Accuracy

In general there is a gain in precision in numerical integration, in this case associated with the division by 2i in the formula quoted in Section 3.

8  Parallelism and Performance

Not applicable.

9  Further Comments

The time taken is approximately proportional to n+1.
The increments IA1, IAINT1 are included as parameters to give a degree of flexibility which, for example, allows a polynomial in two variables to be integrated with respect to either variable without rearranging the coefficients.

10  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 integral of the polynomial from 0.0 to 2.0. (For the purpose of this example, XMIN, XMAX and the Chebyshev coefficients are simply supplied in DATA statements. Normally a program would read in or generate data and compute the fitted polynomial).

10.1  Program Text

Program Text (e02ajfe.f90)

10.2  Program Data

None.

10.3  Program Results

Program Results (e02ajfe.r)


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

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