nag_1d_cheb_intg (e02ajc) (PDF version)
e02 Chapter Contents
e02 Chapter Introduction
NAG Library Manual

NAG Library Function Document

nag_1d_cheb_intg (e02ajc)

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

nag_1d_cheb_intg (e02ajc) determines the coefficients in the Chebyshev series representation of the indefinite integral of a polynomial given in Chebyshev series form.

2  Specification

#include <nag.h>
#include <nage02.h>
void  nag_1d_cheb_intg (Integer n, double xmin, double xmax, const double a[], Integer ia1, double qatm1, double aintc[], Integer iaint1, NagError *fail)

3  Description

nag_1d_cheb_intg (e02ajc) 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 function 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 nag_1d_cheb_eval2 (e02akc).
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 function 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  Arguments

1:     nIntegerInput
On entry: n, the degree of the given polynomial px.
Constraint: n0.
2:     xmindoubleInput
3:     xmaxdoubleInput
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:     a[dim]const doubleInput
Note: the dimension, dim, of the array a must be at least 1+n+1-1×ia1.
On entry: the Chebyshev coefficients of the polynomial px. Specifically, element i×ia1 of a must contain the coefficient ai, for i=0,1,,n. Only these n+1 elements will be accessed.
5:     ia1IntegerInput
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 a[0],a[3],a[6],, then the value of ia1 must be 3. See also Section 9.
Constraint: ia11.
6:     qatm1doubleInput
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.
7:     aintc[dim]doubleOutput
Note: the dimension, dim, of the array aintc must be at least 1+n+1×iaint1.
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 of aintc contains the coefficient ai, for i=0,1,,n+1.
8:     iaint1IntegerInput
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 aintc[0],aintc[3],aintc[6],, then the value of iaint1 must be 3. See also Section 9.
Constraint: iaint11.
9:     failNagError *Input/Output
The NAG error argument (see Section 3.6 in the Essential Introduction).

6  Error Indicators and Warnings

NE_BAD_PARAM
On entry, argument value had an illegal value.
NE_INT
On entry, ia1=value.
Constraint: ia11.
On entry, iaint1=value.
Constraint: iaint11.
On entry, n+1=value.
Constraint: n+11.
On entry, n=value.
Constraint: n0.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
NE_REAL_2
On entry, xmax=value and xmin=value.
Constraint: xmax>xmin.

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 arguments 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 . Normally a program would read in or generate data and compute the fitted polynomial).

10.1  Program Text

Program Text (e02ajce.c)

10.2  Program Data

None.

10.3  Program Results

Program Results (e02ajce.r)


nag_1d_cheb_intg (e02ajc) (PDF version)
e02 Chapter Contents
e02 Chapter Introduction
NAG Library Manual

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