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

NAG Library Routine Document

E02ADF

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

E02ADF computes weighted least squares polynomial approximations to an arbitrary set of data points.

2  Specification

SUBROUTINE E02ADF ( M, KPLUS1, LDA, X, Y, W, WORK1, WORK2, A, S, IFAIL)
INTEGER  M, KPLUS1, LDA, IFAIL
REAL (KIND=nag_wp)  X(M), Y(M), W(M), WORK1(3*M), WORK2(2*KPLUS1), A(LDA,KPLUS1), S(KPLUS1)

3  Description

E02ADF determines least squares polynomial approximations of degrees 0,1,,k to the set of data points xr,yr with weights wr, for r=1,2,,m.
The approximation of degree i has the property that it minimizes σi the sum of squares of the weighted residuals εr, where
εr=wryr-fr  
and fr is the value of the polynomial of degree i at the rth data point.
Each polynomial is represented in Chebyshev series form with normalized argument x-. This argument lies in the range -1 to +1 and is related to the original variable x by the linear transformation
x-= 2x-xmax-xmin xmax-xmin .  
Here xmax and xmin are respectively the largest and smallest values of xr. The polynomial approximation of degree i is represented as
12ai+1,1T0x-+ai+1,2T1x-+ai+1,3T2x-++ai+1,i+1Tix-,  
where Tjx-, for j=0,1,,i, are the Chebyshev polynomials of the first kind of degree j with argument x-.
For i=0,1,,k, the routine produces the values of ai+1,j+1, for j=0,1,,i, together with the value of the root-mean-square residual si=σi/m-i-1. In the case m=i+1 the routine sets the value of si to zero.
The method employed is due to Forsythe (1957) and is based on the generation of a set of polynomials orthogonal with respect to summation over the normalized dataset. The extensions due to Clenshaw (1960) to represent these polynomials as well as the approximating polynomials in their Chebyshev series forms are incorporated. The modifications suggested by Reinsch and Gentleman (see Gentleman (1969)) to the method originally employed by Clenshaw for evaluating the orthogonal polynomials from their Chebyshev series representations are used to give greater numerical stability.
For further details of the algorithm and its use see Cox (1974) and Cox and Hayes (1973).
Subsequent evaluation of the Chebyshev series representations of the polynomial approximations should be carried out using E02AEF.

4  References

Clenshaw C W (1960) Curve fitting with a digital computer Comput. J. 2 170–173
Cox M G (1974) A data-fitting package for the non-specialist user Software for Numerical Mathematics (ed D J Evans) Academic Press
Cox M G and Hayes J G (1973) Curve fitting: a guide and suite of algorithms for the non-specialist user NPL Report NAC26 National Physical Laboratory
Forsythe G E (1957) Generation and use of orthogonal polynomials for data fitting with a digital computer J. Soc. Indust. Appl. Math. 5 74–88
Gentleman W M (1969) An error analysis of Goertzel's (Watt's) method for computing Fourier coefficients Comput. J. 12 160–165
Hayes J G (ed.) (1970) Numerical Approximation to Functions and Data Athlone Press, London

5  Parameters

1:     M – INTEGERInput
On entry: the number m of data points.
Constraint: Mmdist2, where mdist is the number of distinct x values in the data.
2:     KPLUS1 – INTEGERInput
On entry: k+1, where k is the maximum degree required.
Constraint: 0<KPLUS1mdist, where mdist is the number of distinct x values in the data.
3:     LDA – INTEGERInput
On entry: the first dimension of the array A as declared in the (sub)program from which E02ADF is called.
Constraint: LDAKPLUS1.
4:     XM – REAL (KIND=nag_wp) arrayInput
On entry: the values xr of the independent variable, for r=1,2,,m.
Constraint: the values must be supplied in nondecreasing order with XM>X1.
5:     YM – REAL (KIND=nag_wp) arrayInput
On entry: the values yr of the dependent variable, for r=1,2,,m.
6:     WM – REAL (KIND=nag_wp) arrayInput
On entry: the set of weights, wr, for r=1,2,,m. For advice on the choice of weights, see Section 2.1.2 in the E02 Chapter Introduction.
Constraint: Wr>0.0, for r=1,2,,m.
7:     WORK13×M – REAL (KIND=nag_wp) arrayWorkspace
8:     WORK22×KPLUS1 – REAL (KIND=nag_wp) arrayWorkspace
9:     ALDAKPLUS1 – REAL (KIND=nag_wp) arrayOutput
On exit: the coefficients of Tjx- in the approximating polynomial of degree i. Ai+1j+1 contains the coefficient ai+1,j+1, for i=0,1,,k and j=0,1,,i.
10:   SKPLUS1 – REAL (KIND=nag_wp) arrayOutput
On exit: Si+1 contains the root-mean-square residual si, for i=0,1,,k, as described in Section 3. For the interpretation of the values of the si and their use in selecting an appropriate degree, see Section 3.1 in the E02 Chapter Introduction.
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
The weights are not all strictly positive.
IFAIL=2
The values of Xr, for r=1,2,,M, are not in nondecreasing order.
IFAIL=3
All Xr have the same value: thus the normalization of X is not possible.
IFAIL=4
On entry,KPLUS1<1 (so the maximum degree required is negative)
orKPLUS1>mdist, where mdist is the number of distinct x values in the data (so there cannot be a unique solution for degree k=KPLUS1-1).
IFAIL=5
LDA<KPLUS1.
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

No error analysis for the method has been published. Practical experience with the method, however, is generally extremely satisfactory.

8  Parallelism and Performance

Not applicable.

9  Further Comments

The time taken is approximately proportional to mk+1k+11.
The approximating polynomials may exhibit undesirable oscillations (particularly near the ends of the range) if the maximum degree k exceeds a critical value which depends on the number of data points m and their relative positions. As a rough guide, for equally-spaced data, this critical value is about 2×m. For further details see page 60 of Hayes (1970).

10  Example

Determine weighted least squares polynomial approximations of degrees 0, 1, 2 and 3 to a set of 11 prescribed data points. For the approximation of degree 3, tabulate the data and the corresponding values of the approximating polynomial, together with the residual errors, and also the values of the approximating polynomial at points half-way between each pair of adjacent data points.
The example program supplied is written in a general form that will enable polynomial approximations of degrees 0,1,,k to be obtained to m data points, with arbitrary positive weights, and the approximation of degree k to be tabulated. E02AEF is used to evaluate the approximating polynomial. The program is self-starting in that any number of datasets can be supplied.

10.1  Program Text

Program Text (e02adfe.f90)

10.2  Program Data

Program Data (e02adfe.d)

10.3  Program Results

Program Results (e02adfe.r)

GnuplotProduced by GNUPLOT 4.6 patchlevel 3 0 10 20 30 40 0 2 4 6 8 10 −0.1 −0.05 0 0.05 0.1 y |P(xi) -f(xi)| x Example Program Least-squares Cubic Polynomial Approximation to a set of 11 Data Points P(xi) -f(xi) polynomial fit gnuplot_plot_1 points f(xi) gnuplot_plot_2 gnuplot_plot_3

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

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