NAG Library Routine Document
e01zmf
(dimn_scat_shep)
1
Purpose
e01zmf generates a multidimensional interpolant to a set of scattered data points, using a modified Shepard method. When the number of dimensions is no more than five, there are corresponding routines in
Chapter E01 which are specific to the given dimensionality.
e01sgf generates the two-dimensional interpolant, while
e01tgf,
e01tkf and
e01tmf generate the three-, four- and five-dimensional interpolants respectively.
2
Specification
Fortran Interface
Integer, Intent (In) | :: |
d,
m,
nw,
nq | Integer, Intent (Inout) | :: |
ifail | Integer, Intent (Out) | :: |
iq(2*m+1) | Real (Kind=nag_wp), Intent (In) | :: |
x(d,m),
f(m) | Real (Kind=nag_wp), Intent (Out) | :: |
rq(*) |
|
C Header Interface
#include nagmk26.h
void |
e01zmf_ (
const Integer *d,
const Integer *m,
const double x[],
const double f[],
const Integer *nw,
const Integer *nq,
Integer iq[],
double rq[],
Integer *ifail) |
|
3
Description
e01zmf constructs a smooth function , which interpolates a set of scattered data points , for , using a modification of Shepard's method. The surface is continuous and has continuous first partial derivatives.
The basic Shepard method, which is a generalization of the two-dimensional method described in
Shepard (1968), interpolates the input data with the weighted mean
where
,
.
The basic method is global in that the interpolated value at any point depends on all the data, but
e01zmf uses a modification (see
Franke and Nielson (1980) and
Renka (1988a)), whereby the method becomes local by adjusting each
to be zero outside a hypersphere with centre
and some radius
. Also, to improve the performance of the basic method, each
above is replaced by a function
, which is a quadratic fitted by weighted least squares to data local to
and forced to interpolate
. In this context, a point
is defined to be local to another point if it lies within some distance
of it.
The efficiency of
e01zmf is enhanced by using a cell method for nearest neighbour searching due to
Bentley and Friedman (1979) with a cell density of
.
The radii
and
are chosen to be just large enough to include
and
data points, respectively, for user-supplied constants
and
. Default values of these parameters are provided, and advice on alternatives is given in
Section 9.2.
e01zmf is derived from the new implementation of QSHEP3 described by
Renka (1988b). It uses the modification for high-dimensional interpolation described by
Berry and Minser (1999).
Values of the interpolant
generated by
e01zmf, and its first partial derivatives, can subsequently be evaluated for points in the domain of the data by a call to
e01znf.
4
References
Bentley J L and Friedman J H (1979) Data structures for range searching ACM Comput. Surv. 11 397–409
Berry M W, Minser K S (1999) Algorithm 798: high-dimensional interpolation using the modified Shepard method ACM Trans. Math. Software 25 353–366
Franke R and Nielson G (1980) Smooth interpolation of large sets of scattered data Internat. J. Num. Methods Engrg. 15 1691–1704
Renka R J (1988a) Multivariate interpolation of large sets of scattered data ACM Trans. Math. Software 14 139–148
Renka R J (1988b) Algorithm 661: QSHEP3D: Quadratic Shepard method for trivariate interpolation of scattered data ACM Trans. Math. Software 14 151–152
Shepard D (1968) A two-dimensional interpolation function for irregularly spaced data Proc. 23rd Nat. Conf. ACM 517–523 Brandon/Systems Press Inc., Princeton
5
Arguments
- 1: – IntegerInput
-
On entry: , the number of dimensions.
Constraint:
.
- 2: – IntegerInput
-
On entry:
, the number of data points.
Note: on the basis of experimental results reported in
Berry and Minser (1999), when
it is recommended to use
.
Constraint:
.
- 3: – Real (Kind=nag_wp) arrayInput
-
On entry:
must be set to the Cartesian coordinates of the data point , for .
Constraint:
these coordinates must be distinct, and must not all lie on the same -dimensional hypersurface.
- 4: – Real (Kind=nag_wp) arrayInput
-
On entry: must be set to the data value , for .
- 5: – IntegerInput
-
On entry: the number
of data points that determines each radius of influence
, appearing in the definition of each of the weights
, for
(see
Section 3). Note that
is different for each weight. If
the default value
is used instead.
Suggested value:
.
Constraint:
.
- 6: – IntegerInput
-
On entry: the number
of data points to be used in the least squares fit for coefficients defining the quadratic functions
(see
Section 3). If
the default value
is used instead.
Suggested value:
.
Constraint:
or .
- 7: – Integer arrayOutput
-
On exit: integer data defining the interpolant .
- 8: – Real (Kind=nag_wp) arrayOutput
-
Note: the dimension of the array
rq
must be at least
.
On exit: real data defining the interpolant .
- 9: – 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, .
Constraint: .
On entry, exceeds the largest machine integer.
and .
On entry, and .
Constraint: .
On entry, and .
Constraint: or .
On entry, and .
Constraint: .
On entry, and .
Constraint: .
-
There are duplicate nodes in the dataset. , for , and . The interpolant cannot be derived.
-
On entry, all the data points lie on the same hypersurface. No unique solution exists.
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
In experiments undertaken by
Berry and Minser (1999), the accuracies obtained for a conditional function resulting in sharp functional transitions were of the order of
at best. In other cases in these experiments, the function generated interpolates the input data with maximum absolute error of the order of
.
8
Parallelism and Performance
e01zmf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
e01zmf 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 for a call to e01zmf will depend in general on the distribution of the data points and on the choice of and parameters. If the data points are uniformly randomly distributed, then the time taken should be . At worst time will be required.
Default values of the parameters and may be selected by calling e01zmf with and . These default values may well be satisfactory for many applications.
If non-default values are required they must be supplied to
e01zmf through positive values of
nw and
nq. Increasing these argument values makes the method less local. This may increase the accuracy of the resulting interpolant at the expense of increased computational cost. The default values
and
have been chosen on the basis of experimental results reported in
Renka (1988a) and
Berry and Minser (1999). For further advice on the choice of these arguments see
Renka (1988a) and
Berry and Minser (1999).
9.3
Internal Changes
Internal changes have been made to this routine as follows:
- At Mark 26: The algorithm used by this routine, based on a Modified Shepard method, has been changed to produce more reliable results for some data sets which were previously not well handled. In addition, handling of evaluation points which are far away from the original data points has been improved by use of an extrapolation method which returns useful results rather than just an error message as was done at earlier Marks.
- At Mark 26.1: The algorithm has undergone further changes which enable it to work better on certain data sets, for example data presented on a regular grid. The results returned when evaluating the function at points which are not in the original data set used to construct the interpolating function are now likely to be slightly different from those returned at previous Marks of the Library, but the function still interpolates the original data.
For details of all known issues which have been reported for the NAG Library please refer to the
Known Issues list.
10
Example
This program reads in a set of
data points and calls
e01zmf to construct an interpolating function
. It then calls
e01znf to evaluate the interpolant at a set of points.
Note that this example is not typical of a realistic problem: the number of data points would normally be very much larger.
See also
Section 10 in
e01znf.
10.1
Program Text
Program Text (e01zmfe.f90)
10.2
Program Data
Program Data (e01zmfe.d)
10.3
Program Results
Program Results (e01zmfe.r)