D02UAF (PDF version)
D02 Chapter Contents
D02 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

D02UAF

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
    9  Example

1  Purpose

D02UAF obtains the Chebyshev coefficients of a function discretized on Chebyshev Gauss–Lobatto points. The set of discretization points on which the function is evaluated is usually obtained by a previous call to D02UCF.

2  Specification

SUBROUTINE D02UAF ( N, F, C, IFAIL)
INTEGER  N, IFAIL
REAL (KIND=nag_wp)  F(N+1), C(N+1)

3  Description

D02UAF computes the coefficients cj, for j=1,2,,n+1, of the interpolating Chebyshev series
12 c1 T0 x- + c2 T1 x- + c3T2 x- ++ cn+1 Tn x- ,
which interpolates the function fx evaluated at the Chebyshev Gauss–Lobatto points
x-r = - cos r-1 π/n ,   r=1,2,,n+1 .
Here Tjx- denotes the Chebyshev polynomial of the first kind of degree j with argument x- defined on -1,1. In terms of your original variable, x say, the input values at which the function values are to be provided are
xr = - 12 b - a cos πr-1 /n + 1 2 b + a ,   r=1,2,,n+1 , ​
where b and a are respectively the upper and lower ends of the range of x over which the function is required.

4  References

Canuto C (1988) Spectral Methods in Fluid Dynamics 502 Springer
Canuto C, Hussaini M Y, Quarteroni A and Zang T A (2006) Spectral Methods: Fundamentals in Single Domains Springer
Trefethen L N (2000) Spectral Methods in MATLAB SIAM

5  Parameters

1:     N – INTEGERInput
On entry: n, where the number of grid points is n+1. This is also the largest order of Chebyshev polynomial in the Chebyshev series to be computed.
Constraint: N>0 and N is even.
2:     F(N+1) – REAL (KIND=nag_wp) arrayInput
On entry: the function values fxr, for r=1,2,,n+1.
3:     C(N+1) – REAL (KIND=nag_wp) arrayOutput
On exit: the Chebyshev coefficients, cj, for j=1,2,,n+1.
4:     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,N0 or N is odd.
IFAIL=2
An unexpected error has occurred in an internal call. Check all subroutine calls and array dimensions. Seek expert help.
IFAIL=-999
Internal memory allocation failed.

7  Accuracy

The Chebyshev coefficients computed should be accurate to within a small multiple of machine precision.

8  Further Comments

The number of operations is of the order nlogn and the memory requirements are On; thus the computation remains efficient and practical for very fine discretizations (very large values of n).

9  Example

See Section 9 in D02UEF.

D02UAF (PDF version)
D02 Chapter Contents
D02 Chapter Introduction
NAG Library Manual

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