hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_fit_1dspline_auto (e02be)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

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

Syntax

[n, lamda, c, fp, wrk, iwrk, ifail] = e02be(start, x, y, w, s, n, lamda, wrk, iwrk, 'm', m, 'nest', nest)
[n, lamda, c, fp, wrk, iwrk, ifail] = nag_fit_1dspline_auto(start, x, y, w, s, n, lamda, wrk, iwrk, 'm', m, 'nest', nest)
Note: the interface to this routine has changed since earlier releases of the toolbox:
At Mark 22: lwrk was removed from the interface

Description

nag_fit_1dspline_auto (e02be) 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 function. 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 argument 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 function 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 Choice of for advice on choice of S .)
The method employed is outlined in Outline of Method Used 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 nag_fit_1dspline_eval (e02bb), nag_fit_1dspline_deriv (e02bc) or nag_fit_1dspline_integ (e02bd), as described in Evaluation of Computed Spline.

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

Parameters

Compulsory Input Parameters

1:     start – string (length ≥ 1)
Must be set to 'C' or 'W'.
start='C'
The function will build up the knot set starting with no interior knots. No values need be assigned to the arguments n, lamda, wrk or iwrk.
start='W'
The function will restart the knot-placing strategy using the knots found in a previous call of the function. In this case, the arguments 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:     xm – double array
The values xr of the independent variable (abscissa) x , for r=1,2,,m.
Constraint: x1<x2<<xm.
3:     ym – double array
The values yr of the dependent variable (ordinate) y , for r=1,2,,m.
4:     wm – double array
The values wr of the weights, for r=1,2,,m. For advice on the choice of weights, see Weighting of data points in the E02 Chapter Introduction.
Constraint: wr>0.0, for r=1,2,,m.
5:     s – double scalar
The smoothing factor, S .
If S=0.0, the function 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 Description and Choice of .
Constraint: s0.0.
6:     n int64int32nag_int scalar
If the warm start option is used, the value of n must be left unchanged from the previous call.
7:     lamdanest – double array
If the warm start option is used, the values lamda1,lamda2,,lamda n  must be left unchanged from the previous call.
8:     wrklwrk – double array
lwrk, the dimension of the array, must satisfy the constraint lwrk4×m+16×nest+41.
If the warm start option is used on entry, the values wrk1,,wrkn must be left unchanged from the previous call.
9:     iwrknest int64int32nag_int 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.

Optional Input Parameters

1:     m int64int32nag_int scalar
Default: the dimension of the arrays x, y, w. (An error is raised if these dimensions are not equal.)
m , the number of data points.
Constraint: m4.
2:     nest int64int32nag_int scalar
Default: the dimension of the arrays lamda, iwrk. (An error is raised if these dimensions are not equal.)
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.

Output Parameters

1:     n int64int32nag_int scalar
The total number, n , of knots of the computed spline.
2:     lamdanest – double array
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.
3:     cnest – double array
The coefficient ci of the B-spline Nix in the spline approximation sx, for i=1,2,,n-4.
4:     fp – double scalar
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.
5:     wrklwrk – double array
6:     iwrknest int64int32nag_int array
This array is used as workspace.
7:     ifail int64int32nag_int scalar
ifail=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

Errors or warnings detected by the function:
   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 arguments 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.
   ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
   ifail=-399
Your licence key may have expired or may not have been installed correctly.
   ifail=-999
Dynamic memory allocation failed.
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.

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.

Further Comments

Timing

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

Choice of S

If the weights have been correctly chosen (see Weighting of data points 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 Description.
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 nag_fit_1dspline_auto (e02be) 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 nag_fit_1dspline_auto (e02be) once more with the selected value for S  but now using start='C'. Often, nag_fit_1dspline_auto (e02be) then returns an approximation with the same quality of fit but with fewer knots, which is therefore better if data reduction is also important.

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 nag_fit_1dspline_knots (e02ba)) 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 nag_fit_1dspline_knots (e02ba)) 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 function 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 function 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 nag_fit_1dspline_knots (e02ba).
An exception occurs when the function 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).

Evaluation of Computed Spline

The value of the computed spline at a given value x may be obtained in the double variable s by the call:
[s, ifail] = e02bb(lamda, c, x);
where n, lamda and c are the output arguments of nag_fit_1dspline_auto (e02be).
The values of the spline and its first three derivatives at a given value x may be obtained in the double array s of dimension at least 4 by the call:
[s, ifail] = e02bc(lamda, c, x, left);
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 nag_fit_1dspline_deriv (e02bc)).
The value of the definite integral of the spline over the interval x1 to x m  can be obtained in the double variable dint by the call:
[dint, ifail] = e02bd(lamda, c);
(see nag_fit_1dspline_integ (e02bd)).

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 nag_fit_1dspline_auto (e02be) 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 nag_fit_1dspline_eval (e02bb), 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.
function e02be_example


fprintf('e02be example results\n\n');

start = 'C';
data = [0.0  -1.100  1.0;
        0.5  -0.372  2.0;
        1.0   0.431  1.5;
        1.5   1.690  1.0;
        2.0   2.110  3.0;
        2.5   3.100  1.0;
        3.0   4.230  0.5;
        4.0   4.350  1.0;
        4.5   4.810  2.0;
        5.0   4.610  2.5;
        5.5   4.790  1.0;
        6.0   5.230  3.0;
        7.0   6.350  1.0;
        7.5   7.190  2.0;
        8.0   7.970  1.0];
x = data(:,1);
y = data(:,2);
w = data(:,3);
m = size(data,1);

s = [1 0.5 0.1];

nest  = m + 4;
n     = int64(nest);
lamda = zeros(nest,1);
wrk   = zeros(4*m+16*nest+41, 1);
iwrk  = zeros(nest, 1, 'int64');
start = 'Cold';

xs(1:2:2*m-1) = x;
xs(2:2:2*m-2) = (x(1:m-1)+x(2:m))/2;

for is = 1:3
  % Get spline
  [n, lamda, c, fp, wrk, iwrk, ifail] = ...
  e02be( ...
         start, x, y, w, s(is), n, lamda, wrk, iwrk);

  % Print details of spline
  fprintf('\nCalling with smoothing factor S = %5.2f\n\n', s(is));
  fprintf('         Knots    Coeffs\n');
  fprintf('%4d%20.4f\n', 1, c(1));
  for j = 2:n-5
    fprintf('%4d%10.4f%10.4f\n', j, lamda(j+2), c(j));
  end
  fprintf('%4d%20.4f\n\n', n-4, c(n-4));
  fprintf('Weighted sum of squared residuals = %7.4f\n', fp);
  if fp==0
    fprintf('(The spline is an interpolating spline)\n');
  elseif n==8
    fprintf('(The spline is the weighted least-squares cubic polynomial)\n');
  end
  fprintf('\n');

  % Evaluate at x and mid-points (xs)
  for i = 1:2*m-1
    [fit(i,is), ifail] = e02bb( ...
                                lamda, c, xs(i),'ncap7',n);
  end

  start = 'Warm';
end

fig1 = figure;
hold on
plot(x,y,'*','Color','Green')
plot(xs,fit(:,1));
xlabel('x');
title('Evaluation of B-spline representation, S = 1.0');
legend('Evaluation points','B-spline','Location','NorthWest');
hold off;

fig2 = figure;
hold on
plot(x,y,'*','Color','Green')
plot(xs,fit(:,2));
xlabel('x');
title('Evaluation of B-spline representation, S = 0.5');
legend('Evaluation points','B-spline','Location','NorthWest');
hold off;

fig3 = figure;
hold on
plot(x,y,'*','Color','Green')
plot(xs,fit(:,3));
xlabel('x');
title('Evaluation of B-spline representation, S = 0.1');
legend('Evaluation points','B-spline','Location','NorthWest');
hold off;


e02be example results


Calling with smoothing factor S =  1.00

         Knots    Coeffs
   1             -1.3201
   2    0.0000    1.3542
   3    4.0000    5.5510
   4    8.0000    4.7031
   5              8.2277

Weighted sum of squared residuals =  1.0003


Calling with smoothing factor S =  0.50

         Knots    Coeffs
   1             -1.1072
   2    0.0000   -0.6571
   3    1.0000    0.4350
   4    2.0000    2.8061
   5    4.0000    4.6824
   6    5.0000    4.6416
   7    6.0000    5.1976
   8    8.0000    6.9008
   9              7.9979

Weighted sum of squared residuals =  0.5001


Calling with smoothing factor S =  0.10

         Knots    Coeffs
   1             -1.0901
   2    0.0000   -0.6401
   3    1.0000    0.0334
   4    1.5000    1.6390
   5    2.0000    2.1243
   6    3.0000    4.5591
   7    4.0000    4.2174
   8    4.5000    4.9105
   9    5.0000    4.5475
  10    5.5000    4.6960
  11    6.0000    5.7370
  12    8.0000    6.8179
  13              7.9953

Weighted sum of squared residuals =  0.1000

e02be_fig1.png
e02be_fig2.png
e02be_fig3.png

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

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