NAG Library Routine Document
e02baf
(dim1_spline_knots)
1
Purpose
e02baf 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
Fortran Interface
Subroutine e02baf ( |
m,
ncap7,
x,
y,
w,
lamda,
work1,
work2,
c,
ss,
ifail) |
Integer, Intent (In) | :: |
m,
ncap7 | Integer, Intent (Inout) | :: |
ifail | Real (Kind=nag_wp), Intent (In) | :: |
x(m),
y(m),
w(m) | Real (Kind=nag_wp), Intent (Inout) | :: |
lamda(ncap7) | Real (Kind=nag_wp), Intent (Out) | :: |
work1(m),
work2(4*ncap7),
c(ncap7),
ss |
|
C Header Interface
#include nagmk26.h
void |
e02baf_ (
const Integer *m,
const Integer *ncap7,
const double x[],
const double y[],
const double w[],
double lamda[],
double work1[],
double work2[],
double c[],
double *ss,
Integer *ifail) |
|
3
Description
e02baf determines a least squares cubic spline approximation to the set of data points with weights , for . The value of , where is the number of intervals of the spline (one greater than the number of interior knots), and the values of the knots , interior to the data interval, are prescribed by you.
has the property that it minimizes
, the sum of squares of the weighted residuals
, for
, where
The routine produces this minimizing value of
and the coefficients
, where
, in the B-spline representation
Here
denotes the normalized B-spline of degree
defined upon the knots
.
In order to define the full set of B-splines required, eight additional knots and are inserted automatically by the routine. The first four of these are set equal to the smallest and the last four to the largest .
The representation of in terms of B-splines is the most compact form possible in that only coefficients, in addition to the knots, fully define .
The method employed involves forming and then computing the least squares solution of a set of
linear equations in the coefficients
, for
. The equations are formed using a recurrence relation for B-splines that is unconditionally stable (see
Cox (1972) and
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 (see
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
for any value of
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
from its B-spline representation may be carried out using
e02bbf. If derivatives of
are also required,
e02bcf may be used.
e02bdf can be used to compute the definite integral of
.
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: – IntegerInput
-
On entry: the number of data points.
Constraint:
, where is the number of distinct values in the data.
- 2: – IntegerInput
-
On entry: , where 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 to ) over which the spline is defined.
Constraint:
, where is the number of distinct values in the data.
- 3: – Real (Kind=nag_wp) arrayInput
-
On entry: the values
of the independent variable (abscissa), for .
Constraint:
.
- 4: – Real (Kind=nag_wp) arrayInput
-
On entry: the values
of the dependent variable (ordinate), for .
- 5: – Real (Kind=nag_wp) arrayInput
-
On entry: the values
of the weights, for
. For advice on the choice of weights, see the
E02 Chapter Introduction.
Constraint:
, for .
- 6: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: must be set to the th (interior) knot, , for .
Constraint:
.
On exit: the input values are unchanged, and
, for
,
,
,
,
ncap7 contains the additional (exterior) knots introduced by the routine. For advice on the choice of knots, see
Section 3.3 in the E02 Chapter Introduction.
- 7: – Real (Kind=nag_wp) arrayWorkspace
- 8: – Real (Kind=nag_wp) arrayWorkspace
-
- 9: – Real (Kind=nag_wp) arrayOutput
-
On exit: the coefficient
of the B-spline , for . The remaining elements of the array are not used.
- 10: – Real (Kind=nag_wp)Output
-
On exit: the residual sum of squares, .
- 11: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this argument, the recommended value is
.
When the value is used it is essential to test the value of ifail on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6
Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Errors or warnings detected by the routine:
-
The knots fail to satisfy the condition
.
Thus the knots are not in correct order or are not interior to the data interval.
-
The weights are not all strictly positive.
-
The values of , for , are not in nondecreasing order.
-
(so the number of interior knots is negative) or , where is the number of distinct values in the data (so there cannot be a unique solution).
-
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
strictly increasing values,
, among the abscissae such that
- ,
- ,
- .
This means that there is no unique solution: there are regions containing too many knots compared with the number of data points.
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
Accuracy
The rounding errors committed are such that the computed coefficients are exact for a slightly perturbed set of ordinates
. The ratio of the root-mean-square value for the
to the root-mean-square value of the
can be expected to be less than a small multiple of
, where
is a condition number for the problem. Values of
for
–
practical datasets all proved to lie between
and
(see
Cox (1975)). (Note that for these datasets, replacing the coincident end knots at the end points
and
used in the routine by various choices of non-coincident exterior knots gave values of
between
and
. 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
e02baf is not threaded in any implementation.
The time taken is approximately seconds, where is a machine-dependent constant.
Multiple knots are permitted as long as their multiplicity does not exceed
, i.e., the complete set of knots must satisfy
, for
, (see
Section 6). At a knot of multiplicity one (the usual case),
and its first two derivatives are continuous. At a knot of multiplicity two,
and its first derivative are continuous. At a knot of multiplicity three,
is continuous, and at a knot of multiplicity four,
is generally discontinuous.
The routine can be used efficiently for cubic spline interpolation, i.e., if . The abscissae must then of course satisfy . Recommended values for the knots in this case are , for .
10
Example
Determine a weighted least squares cubic spline approximation with five intervals (four interior knots) to a set of 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
intervals (
interior knots) to be obtained to
data points, with arbitrary positive weights, and the approximation to be tabulated. Note that
e02bbf 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 (e02bafe.f90)
10.2
Program Data
Program Data (e02bafe.d)
10.3
Program Results
Program Results (e02bafe.r)