nag_1d_spline_fit_knots (e02bac) (PDF version)
e02 Chapter Contents
e02 Chapter Introduction
NAG Library Manual

NAG Library Function Document

nag_1d_spline_fit_knots (e02bac)

 Contents

    1  Purpose
    7  Accuracy

1  Purpose

nag_1d_spline_fit_knots (e02bac) computes a weighted least squares approximation to an arbitrary set of data points by a cubic spline with knots prescribed by you. Cubic spline interpolation can also be carried out.

2  Specification

#include <nag.h>
#include <nage02.h>
void  nag_1d_spline_fit_knots (Integer m, const double x[], const double y[], const double weights[], double *ss, Nag_Spline *spline, NagError *fail)

3  Description

nag_1d_spline_fit_knots (e02bac) determines a least squares cubic spline approximation s x  to the set of data points x r , y r  with weights w r , for r=1,2,,m. The value of splinen = n - + 7 , where n -  is the number of intervals of the spline (one greater than the number of interior knots), and the values of the knots λ 5 , λ 6 , , λ n - + 3 , interior to the data interval, are prescribed by you.
s x  has the property that it minimizes θ , the sum of squares of the weighted residuals ε r , for r=1,2,,m, where
ε r = w r y r-s x r .  
The function produces this minimizing value of θ  and the coefficients c 1 , c 2 , , c q , where q = n - + 3 , in the B-spline representation
s x = i=1 q c i N i x .  
Here N i x  denotes the normalized B-spline of degree 3 defined upon the knots λ i , λ i+1 , , λ i+4 .
In order to define the full set of B-splines required, eight additional knots λ 1 , λ 2 , λ 3 , λ 4  and λ n - + 4 , λ n - + 5 , λ n - + 6 , λ n - + 7  are inserted automatically by the function. The first four of these are set equal to the smallest x r  and the last four to the largest x r .
The representation of s x  in terms of B-splines is the most compact form possible in that only n - + 3  coefficients, in addition to the n - + 7  knots, fully define s x .
The method employed involves forming and then computing the least squares solution of a set of m  linear equations in the coefficients c i i = 1 , 2 , , n - + 3 . The equations are formed using a recurrence relation for B-splines that is unconditionally stable (Cox (1972), de Boor (1972)), even for multiple (coincident) knots. The least squares solution is also obtained in a stable manner by using orthogonal transformations, viz. a variant of Givens rotations (Gentleman (1974) and Gentleman (1973)). This requires only one equation to be stored at a time. Full advantage is taken of the structure of the equations, there being at most four nonzero values of N i x  for any value of x  and hence at most four coefficients in each equation.
For further details of the algorithm and its use see Cox (1974), Cox (1975) and Cox and Hayes (1973).
Subsequent evaluation of s x  from its B-spline representation may be carried out using nag_1d_spline_evaluate (e02bbc). If derivatives of s x  are also required, nag_1d_spline_deriv (e02bcc) may be used. nag_1d_spline_intg (e02bdc) can be used to compute the definite integral of s x .

4  References

Cox M G (1972) The numerical evaluation of B-splines J. Inst. Math. Appl. 10 134–149
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 (1975) Numerical methods for the interpolation and approximation of data by spline functions PhD Thesis City University, London
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
de Boor C (1972) On calculating with B-splines J. Approx. Theory 6 50–62
Gentleman W M (1973) Least squares computations by Givens transformations without square roots J. Inst. Math. Applic. 12 329–336
Gentleman W M (1974) Algorithm AS 75. Basic procedures for large sparse or weighted linear least squares problems Appl. Statist. 23 448–454
Schoenberg I J and Whitney A (1953) On Polya frequency functions III Trans. Amer. Math. Soc. 74 246–259

5  Arguments

1:     m IntegerInput
On entry: the number m  of data points.
Constraint: m mdist 4 , where mdist  is the number of distinct x  values in the data.
2:     x[m] const doubleInput
On entry: the values x r  of the independent variable (abscissa), for r=1,2,,m.
Constraint: x 1 x 2 x m .
3:     y[m] const doubleInput
On entry: the values y r  of the of the dependent variable (ordinate), for r=1,2,,m.
4:     weights[m] const doubleInput
On entry: the values w r  of the weights, for r=1,2,,m. For advice on the choice of weights, see the e02 Chapter Introduction.
Constraint: w r > 0 , for r=1,2,,m.
5:     ss double *Output
On exit: the residual sum of squares, θ .
6:     spline Nag_Spline *
Pointer to structure of type Nag_Spline with the following members:
nIntegerInput
On entry: n - + 7 , where n -  is the number of intervals of the spline (which is one greater than the number of interior knots, i.e., the knots strictly within the range x 1  to x m ) over which the spline is defined.
Constraint: 8 n mdist + 4 , where mdist  is the number of distinct x  values in the data.
lamdadouble *Input/Output
On entry: a pointer to which memory of size n must be allocated. lamda[i-1]  must be set to the i-4 th interior knot, λ i , for i=5,6,, n - + 3.
On exit: the input values are unchanged, and lamda[i] , i = 0 , 1 , 2 , 3 , n - 4 , n-3 , n-2 , n-1  contains the additional exterior knots introduced by the function.
Constraint: x[0] < lamda[4] lamda[5] lamda[n-5] < x[m-1] .
cdouble *Output
On exit: a pointer to which memory of size n-4  is internally allocated. c holds the coefficient c i  of the B-spline N i x , for i=1,2,, n - + 3.
Note that when the information contained in the pointers lamda and c is no longer of use, or before a new call to nag_1d_spline_fit_knots (e02bac) with the same spline, you should free this storage using the NAG macro NAG_FREE.
7:     fail NagError *Input/Output
The NAG error argument (see Section 2.7 in How to Use the NAG Library and its Documentation).

6  Error Indicators and Warnings

NE_ALLOC_FAIL
Dynamic memory allocation failed.
NE_INT_ARG_LT
On entry, splinen must not be less than 8: splinen=value .
NE_KNOTS_DISTINCT_ABSCI_CONS
Too many knots for the number of distinct abscissae, mdist : splinen=value , mdist = value.
These must satisfy the constraint splinen mdist + 4 .
NE_KNOTS_OUTSIDE_DATA_INTVL
On entry, user-specified knots must be interior to the data interval, splinelamda[4]  must be greater than x[0]  and splinelamda[splinen-5]  must be less than x[m-1] : splinelamda[4] = value, x[0] = value, splinelamda[value] = value, x[value] = value.
NE_NOT_INCREASING
The sequence splinelamda is not increasing: splinelamda[value] = value, splinelamda[value] = value.
This condition on splinelamda applies to user-specified knots in the interval splinelamda[4] , splinelamda[splinen-5] .
The sequence x is not increasing: x[value] = value, x[value] = value.
NE_SW_COND_FAIL
The conditions specified by Schoenberg and Whitney fail.
The conditions specified by Schoenberg and Whitney (1953) fail to hold for at least one subset of the distinct data abscissae. That is, there is no subset of splinen-4  strictly increasing values, x[ r 0 ] , x[ r 1 ] , , x[ r splinen - 5 ] , among the abscissae such that
  • x[ r 0 ] < splinelamda[0] < x[ r 4 ] ,
  • x[ r 1 ] < splinelamda[1] < x[ r 5 ] ,
  • x[ r splinen - 9 ] < splinelamda[splinen-9] < x[ r splinen - 5 ] .

This means that there is no unique solution: there are regions containing too many knots compared with the number of data points.
NE_WEIGHTS_NOT_POSITIVE
On entry, the weights are not strictly positive: weights[value] = value.

7  Accuracy

The rounding errors committed are such that the computed coefficients are exact for a slightly perturbed set of ordinates y r + δ y r . The ratio of the root-mean-square value for the δ y r  to the root-mean-square value of the y r  can be expected to be less than a small multiple of κ × m × machine precision, where κ  is a condition number for the problem. Values of κ  for 20-30 practical datasets all proved to lie between 4.5 and 7.8 (see Cox (1975)). (Note that for these datasets, replacing the coincident end knots at the end-points x 1  and x m  used in the function by various choices of non-coincident exterior knots gave values of κ  between 16 and 180. Again see Cox (1975) for further details.) In general we would not expect κ  to be large unless the choice of knots results in near-violation of the Schoenberg–Whitney conditions.
A cubic spline which adequately fits the data and is free from spurious oscillations is more likely to be obtained if the knots are chosen to be grouped more closely in regions where the function (underlying the data) or its derivatives change more rapidly than elsewhere.

8  Parallelism and Performance

nag_1d_spline_fit_knots (e02bac) is not threaded in any implementation.

9  Further Comments

The time taken by nag_1d_spline_fit_knots (e02bac) is approximately C × 2 m + n - + 7  seconds, where C  is a machine-dependent constant.
Multiple knots are permitted as long as their multiplicity does not exceed 4, i.e., the complete set of knots must satisfy λ i < λ i+4 , for i=1,2,, n - + 3, (see Section 6). At a knot of multiplicity one (the usual case), s x  and its first two derivatives are continuous. At a knot of multiplicity two, s x  and its first derivative are continuous. At a knot of multiplicity three, s x  is continuous, and at a knot of multiplicity four, s x  is generally discontinuous.
The function can be used efficiently for cubic spline interpolation, i.e., if m = n - + 3 . The abscissae must then of course satisfy x 1 < x 2 < < x m . Recommended values for the knots in this case are λ i = x i-2 , for i=5,6,, n - + 3.

10  Example

Determine a weighted least squares cubic spline approximation with five intervals (four interior knots) to a set of 14 given data points. Tabulate the data and the corresponding values of the approximating spline, together with the residual errors, and also the values of the approximating spline at points half-way between each pair of adjacent data points.
The example program is written in a general form that will enable a cubic spline approximation with n -  intervals ( n - - 1  interior knots) to be obtained to m  data points, with arbitrary positive weights, and the approximation to be tabulated. Note that nag_1d_spline_evaluate (e02bbc) is used to evaluate the approximating spline. The program is self-starting in that any number of datasets can be supplied.

10.1  Program Text

Program Text (e02bace.c)

10.2  Program Data

Program Data (e02bace.d)

10.3  Program Results

Program Results (e02bace.r)


nag_1d_spline_fit_knots (e02bac) (PDF version)
e02 Chapter Contents
e02 Chapter Introduction
NAG Library Manual

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