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

NAG Library Routine Document

E02BEF

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

E02BEF computes a cubic spline approximation to an arbitrary set of data points. The knots of the spline are located automatically, but a single parameter must be specified to control the trade-off between closeness of fit and smoothness of fit.

2  Specification

SUBROUTINE E02BEF ( START, M, X, Y, W, S, NEST, N, LAMDA, C, FP, WRK, LWRK, IWRK, IFAIL)
INTEGER  M, NEST, N, LWRK, IWRK(NEST), IFAIL
REAL (KIND=nag_wp)  X(M), Y(M), W(M), S, LAMDA(NEST), C(NEST), FP, WRK(LWRK)
CHARACTER(1)  START

3  Description

E02BEF determines a smooth cubic spline approximation sx to the set of data points xr,yr, with weights wr, for r=1,2,,m.
The spline is given in the B-spline representation
sx=i=1 n-4ciNix, (1)
where Nix denotes the normalized cubic B-spline defined upon the knots λi,λi+1,,λi+4.
The total number n  of these knots and their values λ1,,λn are chosen automatically by the routine. The knots λ5,,λn-4 are the interior knots; they divide the approximation interval x1,xm into n-7 sub-intervals. The coefficients c1,c2,,cn-4 are then determined as the solution of the following constrained minimization problem:
minimize
η=i=5 n-4δi2 (2)
subject to the constraint
θ=r=1mεr2S, (3)
where δi stands for the discontinuity jump in the third order derivative of sx at the interior knot λi,
  εr denotes the weighted residual wryr-sxr,
and S is a non-negative number to be specified by you.
The quantity η can be seen as a measure of the (lack of) smoothness of sx, while closeness of fit is measured through θ. By means of the parameter S , ‘the smoothing factor’, you can then control the balance between these two (usually conflicting) properties. If S  is too large, the spline will be too smooth and signal will be lost (underfit); if S  is too small, the spline will pick up too much noise (overfit). In the extreme cases the routine will return an interpolating spline θ=0 if S  is set to zero, and the weighted least squares cubic polynomial η=0 if S  is set very large. Experimenting with S  values between these two extremes should result in a good compromise. (See Section 8.2 for advice on choice of S .)
The method employed is outlined in Section 8.3 and fully described in Dierckx (1975), Dierckx (1981) and Dierckx (1982). It involves an adaptive strategy for locating the knots of the cubic spline (depending on the function underlying the data and on the value of S ), and an iterative method for solving the constrained minimization problem once the knots have been determined.
Values of the computed spline, or of its derivatives or definite integral, can subsequently be computed by calling E02BBF, E02BCF or E02BDF, as described in Section 8.4.

4  References

Dierckx P (1975) An algorithm for smoothing, differentiating and integration of experimental data using spline functions J. Comput. Appl. Math. 1 165–184
Dierckx P (1981) An improved algorithm for curve fitting with spline functions Report TW54 Department of Computer Science, Katholieke Univerciteit Leuven
Dierckx P (1982) A fast algorithm for smoothing data on a rectangular grid while using spline functions SIAM J. Numer. Anal. 19 1286–1304
Reinsch C H (1967) Smoothing by spline functions Numer. Math. 10 177–183

5  Parameters

1:     START – CHARACTER(1)Input
On entry: must be set to 'C' or 'W'.
START='C'
The routine will build up the knot set starting with no interior knots. No values need be assigned to the parameters N, LAMDA, WRK or IWRK.
START='W'
The routine will restart the knot-placing strategy using the knots found in a previous call of the routine. In this case, the parameters N, LAMDA, WRK, and IWRK must be unchanged from that previous call. This warm start can save much time in searching for a satisfactory value of S .
Constraint: START='C' or 'W'.
2:     M – INTEGERInput
On entry: m , the number of data points.
Constraint: M4.
3:     X(M) – REAL (KIND=nag_wp) arrayInput
On entry: the values xr of the independent variable (abscissa) x , for r=1,2,,m.
Constraint: x1<x2<<xm.
4:     Y(M) – REAL (KIND=nag_wp) arrayInput
On entry: the values yr of the dependent variable (ordinate) y , for r=1,2,,m.
5:     W(M) – REAL (KIND=nag_wp) arrayInput
On entry: the values wr of the weights, 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.
6:     S – REAL (KIND=nag_wp)Input
On entry: the smoothing factor, S .
If S=0.0, the routine returns an interpolating spline.
If S is smaller than machine precision, it is assumed equal to zero.
For advice on the choice of S, see Sections 3 and 8.2.
Constraint: S0.0.
7:     NEST – INTEGERInput
On entry: an overestimate for the number, n, of knots required.
Constraint: NEST8. In most practical situations, NEST=M/2 is sufficient. NEST never needs to be larger than M+4, the number of knots needed for interpolation S=0.0.
8:     N – INTEGERInput/Output
On entry: if the warm start option is used, the value of N must be left unchanged from the previous call.
On exit: the total number, n , of knots of the computed spline.
9:     LAMDA(NEST) – REAL (KIND=nag_wp) arrayInput/Output
On entry: if the warm start option is used, the values LAMDA1,LAMDA2,,LAMDA N  must be left unchanged from the previous call.
On exit: the knots of the spline, i.e., the positions of the interior knots LAMDA5, LAMDA6,,LAMDA N-4  as well as the positions of the additional knots
LAMDA1=LAMDA2=LAMDA3=LAMDA4=x1
and
LAMDA N-3=LAMDA N-2=LAMDA N-1=LAMDA N =xm
needed for the B-spline representation.
10:   C(NEST) – REAL (KIND=nag_wp) arrayOutput
On exit: the coefficient ci of the B-spline Nix in the spline approximation sx, for i=1,2,,n-4.
11:   FP – REAL (KIND=nag_wp)Output
On exit: the sum of the squared weighted residuals, θ, of the computed spline approximation. If FP=0.0, this is an interpolating spline. FP should equal S  within a relative tolerance of 0.001 unless n=8 when the spline has no interior knots and so is simply a cubic polynomial. For knots to be inserted, S  must be set to a value below the value of FP produced in this case.
12:   WRK(LWRK) – REAL (KIND=nag_wp) arrayCommunication Array
If the warm start option is used on entry, the values WRK1,,WRKn must be left unchanged from the previous call.
13:   LWRK – INTEGERInput
On entry: the dimension of the array WRK as declared in the (sub)program from which E02BEF is called.
Constraint: LWRK4×M+16×NEST+41.
14:   IWRK(NEST) – INTEGER arrayCommunication Array
If the warm start option is used, on entry, the values IWRK1,,IWRKn must be left unchanged from the previous call.
This array is used as workspace.
15:   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,START'C' or 'W',
orM<4,
orS<0.0,
orS=0.0 and NEST<M+4,
orNEST<8,
orLWRK<4×M+16×NEST+41.
IFAIL=2
The weights are not all strictly positive.
IFAIL=3
The values of Xr, for r=1,2,,M, are not in strictly increasing order.
IFAIL=4
The number of knots required is greater than NEST. Try increasing NEST and, if necessary, supplying larger arrays for the parameters LAMDA, C, WRK and IWRK. However, if NEST is already large, say NEST>M/2, then this error exit may indicate that S is too small.
IFAIL=5
The iterative process used to compute the coefficients of the approximating spline has failed to converge. This error exit may occur if S has been set very small. If the error persists with increased S, contact NAG.
If IFAIL=4 or 5, a spline approximation is returned, but it fails to satisfy the fitting criterion (see (2) and (3)) – perhaps by only a small amount, however.

7  Accuracy

On successful exit, the approximation returned is such that its weighted sum of squared residuals θ (as in (3)) is equal to the smoothing factor S , up to a specified relative tolerance of 0.001 – except that if n=8, θ may be significantly less than S : in this case the computed spline is simply a weighted least squares polynomial approximation of degree 3, i.e., a spline with no interior knots.

8  Further Comments

8.1  Timing

The time taken for a call of E02BEF depends on the complexity of the shape of the data, the value of the smoothing factor S , and the number of data points. If E02BEF is to be called for different values of S , much time can be saved by setting START='W' after the first call.

8.2  Choice of S

If the weights have been correctly chosen (see Section 2.1.2 in the E02 Chapter Introduction), the standard deviation of wryr would be the same for all r , equal to σ, say. In this case, choosing the smoothing factor S  in the range σ2m±2m, as suggested by Reinsch (1967), is likely to give a good start in the search for a satisfactory value. Otherwise, experimenting with different values of S  will be required from the start, taking account of the remarks in Section 3.
In that case, in view of computation time and memory requirements, it is recommended to start with a very large value for S  and so determine the least squares cubic polynomial; the value returned in FP, call it θ0, gives an upper bound for S . Then progressively decrease the value of S  to obtain closer fits – say by a factor of 10 in the beginning, i.e., S=θ0/10, S=θ0/100, and so on, and more carefully as the approximation shows more details.
The number of knots of the spline returned, and their location, generally depend on the value of S  and on the behaviour of the function underlying the data. However, if E02BEF is called with START='W', the knots returned may also depend on the smoothing factors of the previous calls. Therefore if, after a number of trials with different values of S  and START='W', a fit can finally be accepted as satisfactory, it may be worthwhile to call E02BEF once more with the selected value for S  but now using START='C'. Often, E02BEF then returns an approximation with the same quality of fit but with fewer knots, which is therefore better if data reduction is also important.

8.3  Outline of Method Used

If S=0, the requisite number of knots is known in advance, i.e., n=m+4; the interior knots are located immediately as λi=xi-2, for i=5,6,,n-4. The corresponding least squares spline (see E02BAF) is then an interpolating spline and therefore a solution of the problem.
If S>0, a suitable knot set is built up in stages (starting with no interior knots in the case of a cold start but with the knot set found in a previous call if a warm start is chosen). At each stage, a spline is fitted to the data by least squares (see E02BAF) and θ, the weighted sum of squares of residuals, is computed. If θ>S , new knots are added to the knot set to reduce θ at the next stage. The new knots are located in intervals where the fit is particularly poor, their number depending on the value of S  and on the progress made so far in reducing θ. Sooner or later, we find that θS  and at that point the knot set is accepted. The routine then goes on to compute the (unique) spline which has this knot set and which satisfies the full fitting criterion specified by (2) and (3). The theoretical solution has θ=S . The routine computes the spline by an iterative scheme which is ended when θ=S  within a relative tolerance of 0.001. The main part of each iteration consists of a linear least squares computation of special form, done in a similarly stable and efficient manner as in E02BAF.
An exception occurs when the routine finds at the start that, even with no interior knots n=8, the least squares spline already has its weighted sum of squares of residuals S . In this case, since this spline (which is simply a cubic polynomial) also has an optimal value for the smoothness measure η, namely zero, it is returned at once as the (trivial) solution. It will usually mean that S  has been chosen too large.
For further details of the algorithm and its use, see Dierckx (1981).

8.4  Evaluation of Computed Spline

The value of the computed spline at a given value X may be obtained in the real variable S by the call:
CALL E02BBF(N,LAMDA,C,X,S,IFAIL)
where N, LAMDA and C are the output parameters of E02BEF.
The values of the spline and its first three derivatives at a given value X may be obtained in the real array S of dimension at least 4 by the call:
CALL E02BCF(N,LAMDA,C,X,LEFT,S,IFAIL)
where if LEFT=1, left-hand derivatives are computed and if LEFT1, right-hand derivatives are calculated. The value of LEFT is only relevant if X is an interior knot (see E02BCF).
The value of the definite integral of the spline over the interval X1 to X M  can be obtained in the real variable DINT by the call:
CALL E02BDF(N,LAMDA,C,DINT,IFAIL)
(see E02BDF).

9  Example

This example reads in a set of data values, followed by a set of values of S . For each value of S  it calls E02BEF to compute a spline approximation, and prints the values of the knots and the B-spline coefficients ci.
The program includes code to evaluate the computed splines, by calls to E02BBF, at the points xr and at points mid-way between them. These values are not printed out, however; instead the results are illustrated by plots of the computed splines, together with the data points (indicated by ×) and the positions of the knots (indicated by vertical lines): the effect of decreasing S  can be clearly seen.

9.1  Program Text

Program Text (e02befe.f90)

9.2  Program Data

Program Data (e02befe.d)

9.3  Program Results

Program Results (e02befe.r)

Produced by GNUPLOT 4.4 patchlevel 0 -2 0 2 4 6 8 0 1 2 3 4 5 6 7 8 B-spline x Example Program Calculation and Evaluation of B-splines Representation Smoothing Factor S=1.0 B-spline data points
Produced by GNUPLOT 4.4 patchlevel 0 -2 0 2 4 6 8 0 1 2 3 4 5 6 7 8 B-spline x Smoothing Factor S=0.5 B-spline data points
Produced by GNUPLOT 4.4 patchlevel 0 -2 0 2 4 6 8 0 1 2 3 4 5 6 7 8 B-spline x Smoothing Factor S=0.1 B-spline data points

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

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