NAG FL Interface
e02ahf (dim1_​cheb_​deriv)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

e02ahf determines the coefficients in the Chebyshev series representation of the derivative of a polynomial given in Chebyshev series form.

2 Specification

Fortran Interface
Subroutine e02ahf ( np1, xmin, xmax, a, ia1, la, patm1, adif, iadif1, ladif, ifail)
Integer, Intent (In) :: np1, ia1, la, iadif1, ladif
Integer, Intent (Inout) :: ifail
Real (Kind=nag_wp), Intent (In) :: xmin, xmax, a(la)
Real (Kind=nag_wp), Intent (Out) :: patm1, adif(ladif)
C Header Interface
#include <nag.h>
void  e02ahf_ (const Integer *np1, const double *xmin, const double *xmax, const double a[], const Integer *ia1, const Integer *la, double *patm1, double adif[], const Integer *iadif1, const Integer *ladif, Integer *ifail)
The routine may be called by the names e02ahf or nagf_fit_dim1_cheb_deriv.

3 Description

e02ahf forms the polynomial which is the derivative of a given polynomial. Both the original polynomial and its derivative are represented in Chebyshev series form. Given the coefficients ai, for i=0,1,,n, of a polynomial p(x) of degree n, where
p(x)=12a0+a1T1(x¯)++anTn(x¯)  
the routine returns the coefficients a¯i, for i=0,1,,n-1, of the polynomial q(x) of degree n-1, where
q(x)=dp(x) dx =12a¯0+a¯1T1(x¯)++a¯n-1Tn-1(x¯).  
Here Tj(x¯) 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 derivative to be with respect to the variable x. If the derivative with respect to x¯ is required, set xmax=1 and xmin=−1.
Values of the derivative 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 to obtain the derivative with respect to x. Initially setting a¯n+1=a¯n=0, the routine forms successively
a¯i-1=a¯i+1+2xmax-xmin 2iai,  i=n,n-1,,1.  

4 References

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

5 Arguments

1: np1 Integer Input
On entry: n+1, where n is the degree of the given polynomial p(x). 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: a(la) Real (Kind=nag_wp) array Input
On entry: the Chebyshev coefficients of the polynomial p(x). Specifically, element i×ia1 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 adif, below.
5: ia1 Integer Input
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(1),a(4),a(7),, the value of ia1 must be 3. See also Section 9.
Constraint: ia11.
6: la Integer Input
On entry: the dimension of the array a as declared in the (sub)program from which e02ahf is called.
Constraints:
  • la1+(np1-1)×ia1.
7: patm1 Real (Kind=nag_wp) Output
On exit: the value of p(xmin). If this value is passed to the integration routine e02ajf with the coefficients of q(x), the original polynomial p(x) is recovered, including its constant coefficient.
8: adif(ladif) Real (Kind=nag_wp) array Output
On exit: the Chebyshev coefficients of the derived polynomial q(x). (The differentiation is with respect to the variable x.) Specifically, element i×iadif1+1 of adif contains the coefficient a¯i, for i=0,1,,n-1. Additionally, element n×iadif1+1 is set to zero. A call of the routine may have the array name adif the same as a, provided that note is taken of the order in which elements are overwritten, when choosing the starting elements and increments ia1 and iadif1, i.e., the coefficients a0,a1,,ai-1 must be intact after coefficient a¯i is stored. In particular, it is possible to overwrite the ai completely by having ia1=iadif1, and the actual arrays for a and adif identical.
9: iadif1 Integer Input
On entry: the index increment of adif. Most frequently the Chebyshev coefficients are required in adjacent elements of adif, and iadif1 must be set to 1. However, if, for example, they are to be stored in adif(1),adif(4),adif(7),, the value of iadif1 must be 3. See Section 9.
Constraint: iadif11.
10: ladif Integer Input
On entry: the dimension of the array adif as declared in the (sub)program from which e02ahf is called.
Constraints:
  • ladif1+(np1-1) ×iadif1.
11: ifail Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. 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, ia1=value.
Constraint: ia11.
On entry, iadif1=value.
Constraint: iadif11.
On entry, la=value, np1=value and ia1=value.
Constraint: la>(np1-1)×ia1.
On entry, ladif=value, np1=value and iadif1=value.
Constraint: ladif>(np1-1)×iadif1.
On entry, np1=value.
Constraint: np11.
On entry, xmax=value and xmin=value.
Constraint: xmax>xmin.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

There is always a loss of precision in numerical differentiation, in this case associated with the multiplication by 2i in the formula quoted in Section 3.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
e02ahf is not threaded in any implementation.

9 Further Comments

The time taken is approximately proportional to n+1.
The increments ia1, iadif1 are included as arguments to give a degree of flexibility which, for example, allows a polynomial in two variables to be differentiated 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 first and second derivatives of this polynomial at 4 equally spaced points over the interval. (For the purposes of this example, xmin, xmax and the Chebyshev coefficients are simply suppliedin DATA statements. Normally a program would first read in or generate data and compute the fitted polynomial.)

10.1 Program Text

Program Text (e02ahfe.f90)

10.2 Program Data

None.

10.3 Program Results

Program Results (e02ahfe.r)
GnuplotProduced by GNUPLOT 4.6 patchlevel 3 0 0.5 1 1.5 2 2.5 3 −0.5 0 0.5 1 1.5 2 2.5 P(x), P'(x), P''(x) x Example Program Evaluation of Chebyshev Polynomial and its Derivatives P(x) P'(x) P''(x) gnuplot_plot_1 gnuplot_plot_2 gnuplot_plot_3