NAG Library Routine Document
e01daf
(dim2_spline_grid)
1
Purpose
e01daf computes a bicubic spline interpolating surface through a set of data values, given on a rectangular grid in the - plane.
2
Specification
Fortran Interface
Subroutine e01daf ( |
mx,
my,
x,
y,
f,
px,
py,
lamda,
mu,
c,
wrk,
ifail) |
Integer, Intent (In) | :: |
mx,
my | Integer, Intent (Inout) | :: |
ifail | Integer, Intent (Out) | :: |
px,
py | Real (Kind=nag_wp), Intent (In) | :: |
x(mx),
y(my),
f(mx*my) | Real (Kind=nag_wp), Intent (Out) | :: |
lamda(mx+4),
mu(my+4),
c(mx*my),
wrk((mx+6)*(my+6)) |
|
C Header Interface
#include nagmk26.h
void |
e01daf_ (
const Integer *mx,
const Integer *my,
const double x[],
const double y[],
const double f[],
Integer *px,
Integer *py,
double lamda[],
double mu[],
double c[],
double wrk[],
Integer *ifail) |
|
3
Description
e01daf determines a bicubic spline interpolant to the set of data points
, for
and
. The spline is given in the B-spline representation
such that
where
and
denote normalized cubic B-splines, the former defined on the knots
to
and the latter on the knots
to
, and the
are the spline coefficients. These knots, as well as the coefficients, are determined by the routine, which is derived from the routine B2IRE in
Anthony et al. (1982). The method used is described in
Section 9.2.
For further information on splines, see
Hayes and Halliday (1974) for bicubic splines and
de Boor (1972) for normalized B-splines.
Values and derivatives of the computed spline can subsequently be computed by calling
e02def,
e02dff or
e02dhf as described in
Section 9.3.
4
References
Anthony G T, Cox M G and Hayes J G (1982) DASL – Data Approximation Subroutine Library National Physical Laboratory
Cox M G (1975) An algorithm for spline interpolation J. Inst. Math. Appl. 15 95–108
de Boor C (1972) On calculating with B-splines J. Approx. Theory 6 50–62
Hayes J G and Halliday J (1974) The least squares fitting of cubic spline surfaces to general data sets J. Inst. Math. Appl. 14 89–103
5
Arguments
- 1: – IntegerInput
- 2: – IntegerInput
-
On entry:
mx and
my must specify
and
respectively, the number of points along the
and
axis that define the rectangular grid.
Constraint:
and .
- 3: – Real (Kind=nag_wp) arrayInput
- 4: – Real (Kind=nag_wp) arrayInput
-
On entry: and must contain , for , and
, for , respectively.
Constraints:
- , for ;
- , for .
- 5: – Real (Kind=nag_wp) arrayInput
-
On entry: must contain , for and .
- 6: – IntegerOutput
- 7: – IntegerOutput
-
On exit:
px and
py contain
and
, the total number of knots of the computed spline with respect to the
and
variables, respectively.
- 8: – Real (Kind=nag_wp) arrayOutput
- 9: – Real (Kind=nag_wp) arrayOutput
-
On exit:
lamda contains the complete set of knots
associated with the
variable, i.e., the interior knots
, as well as the additional knots
and
needed for the B-spline representation.
- 10: – Real (Kind=nag_wp) arrayOutput
-
On exit: the coefficients of the spline interpolant.
contains the coefficient
described in
Section 3.
- 11: – Real (Kind=nag_wp) arrayWorkspace
-
- 12: – 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:
-
-
On entry, either the values in the
x array or the values in the
y array are not in increasing order if not already there.
-
A system of linear equations defining the B-spline coefficients was singular; the problem is too ill-conditioned to permit solution.
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 main sources of rounding errors are in steps
,
,
and
of the algorithm described in
Section 9.2. It can be shown (see
Cox (1975)) that the matrix
formed in step
has elements differing relatively from their true values by at most a small multiple of
, where
is the
machine precision.
is ‘totally positive’, and a linear system with such a coefficient matrix can be solved quite safely by elimination without pivoting. Similar comments apply to steps
and
. Thus the complete process is numerically stable.
8
Parallelism and Performance
e01daf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the
X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the
Users' Note for your implementation for any additional implementation-specific information.
The time taken by e01daf is approximately proportional to .
The process of computing the spline consists of the following steps:
1. |
choice of the interior -knots , as , for , |
2. |
formation of the system
where is a band matrix of order and bandwidth , containing in its th row the values at of the B-splines in , is the by rectangular matrix of values , and denotes an by rectangular matrix of intermediate coefficients, |
3. |
use of Gaussian elimination to reduce this system to band triangular form, |
4. |
solution of this triangular system for , |
5. |
choice of the interior knots , as , for , |
6. |
formation of the system
where is the counterpart of for the variable, and denotes the by rectangular matrix of values of , |
7. |
use of Gaussian elimination to reduce this system to band triangular form, |
8. |
solution of this triangular system for and hence . |
For computational convenience, steps and , and likewise steps and , are combined so that the formation of and and the reductions to triangular form are carried out one row at a time.
The values of the computed spline at the points
, for
, may be obtained in the real array
ff (see
e02def), of length at least
, by the following call:
ifail = 0
Call e02def(m,px,py,x,y,lamda,mu,c,ff,wrk,iwrk,ifail)
where
and the coordinates
,
are stored in
,
.
PX and
PY,
LAMDA,
MU and
C have the same values as
px and
py
lamda,
mu and
c output from
e01daf.
WRK is a real workspace array of length at least
PY, and
IWRK is an integer workspace array of length at least
.
(See
e02def.)
To evaluate the computed spline on an
by
rectangular grid of points in the
-
plane, which is defined by the
coordinates stored in
, for
, and the
coordinates stored in
, for
, returning the results in the real array
ff (see
e02dff) which is of length at least
, the following call may be used:
ifail = 0
Call e02dff(mx,my,px,py,x,y,lamda,mu,c,fg,wrk,lwrk,
* iwrk,liwrk,ifail)
where
,
.
PX and
PY,
LAMDA,
MU and
C have the same values as
px,
py,
lamda,
mu and
c output from
e01daf.
WRK is a real workspace array of length at least
, for
,
, and
IWRK is an integer workspace array of length at least
if
, or
otherwise.
The result of the spline evaluated at grid point is returned in element () of the array FG.
10
Example
This example reads in values of , , for , and , for , followed by values of the ordinates defined at the grid points .
It then calls e01daf to compute a bicubic spline interpolant of the data values, and prints the values of the knots and B-spline coefficients. Finally it evaluates the spline at a small sample of points on a rectangular grid.
10.1
Program Text
Program Text (e01dafe.f90)
10.2
Program Data
Program Data (e01dafe.d)
10.3
Program Results
Program Results (e01dafe.r)