NAG Library Routine Document

d02uzf  (bvp_ps_lin_cheb_eval)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

d02uzf returns the value of the kth Chebyshev polynomial evaluated at a point x-1,1. d02uzf is primarily a utility routine for use by the Chebyshev boundary value problem solvers.

2
Specification

Fortran Interface
Subroutine d02uzf ( k, x, t, ifail)
Integer, Intent (In):: k
Integer, Intent (Inout):: ifail
Real (Kind=nag_wp), Intent (In):: x
Real (Kind=nag_wp), Intent (Out):: t
C Header Interface
#include nagmk26.h
void  d02uzf_ ( const Integer *k, const double *x, double *t, Integer *ifail)

3
Description

d02uzf returns the value, T, of the kth Chebyshev polynomial evaluated at a point x-1,1; that is, T=cosk×arccosx.

4
References

Trefethen L N (2000) Spectral Methods in MATLAB SIAM

5
Arguments

1:     k – IntegerInput
On entry: the order of the Chebyshev polynomial.
Constraint: k0.
2:     x – Real (Kind=nag_wp)Input
On entry: the point at which to evaluate the polynomial.
Constraint: -1.0x1.0.
3:     t – Real (Kind=nag_wp)Output
On exit: the value, T, of the Chebyshev polynomial order k evaluated at x.
4:     ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1​ or ​1. 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 -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 argument, 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, k=value.
Constraint: k0.
ifail=2
On entry, x=value.
Constraint: -1.0x1.0.
ifail=-99
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.
ifail=-399
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.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

The accuracy should be close to machine precision.

8
Parallelism and Performance

d02uzf is not threaded in any implementation.

9
Further Comments

None.

10
Example

A set of Chebyshev coefficients is obtained for the function x+exp-x defined on -0.24×π,0.5×π using d02ucf. At each of a set of new grid points in the domain of the function d02uzf is used to evaluate each Chebshev polynomial in the series representation. The values obtained are multiplied to the Chebyshev coefficients and summed to obtain approximations to the given function at the new grid points.

10.1
Program Text

Program Text (d02uzfe.f90)

10.2
Program Data

Program Data (d02uzfe.d)

10.3
Program Results

Program Results (d02uzfe.r)

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