E01TNF (PDF version)
E01 Chapter Contents
E01 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

E01TNF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

E01TNF evaluates the five-dimensional interpolating function generated by E01TMF and its first partial derivatives.

2  Specification

SUBROUTINE E01TNF ( M, X, F, IQ, RQ, N, XE, Q, QX, IFAIL)
INTEGER  M, IQ(2*M+1), N, IFAIL
REAL (KIND=nag_wp)  X(5,M), F(M), RQ(21*M+11), XE(5,N), Q(N), QX(5,N)

3  Description

E01TNF takes as input the interpolant Q x , x5 of a set of scattered data points xr,fr , for r=1,2,,m, as computed by E01TMF, and evaluates the interpolant and its first partial derivatives at the set of points xi, for i=1,2,,n.
E01TNF must only be called after a call to E01TMF.
E01TNF is derived from the new implementation of QS3GRD described by Renka (1988). It uses the modification for five-dimensional interpolation described by Berry and Minser (1999).

4  References

Berry M W, Minser K S (1999) Algorithm 798: high-dimensional interpolation using the modified Shepard method ACM Trans. Math. Software 25 353–366
Renka R J (1988) Algorithm 661: QSHEP3D: Quadratic Shepard method for trivariate interpolation of scattered data ACM Trans. Math. Software 14 151–152

5  Parameters

1:     M – INTEGERInput
On entry: must be the same value supplied for parameter M in the preceding call to E01TMF.
Constraint: M23.
2:     X(5,M) – REAL (KIND=nag_wp) arrayInput
On entry: must be the same array supplied as parameter X in the preceding call to E01TMF. It must remain unchanged between calls.
3:     F(M) – REAL (KIND=nag_wp) arrayInput
On entry: must be the same array supplied as parameter F in the preceding call to E01TMF. It must remain unchanged between calls.
4:     IQ(2×M+1) – INTEGER arrayInput
On entry: must be the same array returned as parameter IQ in the preceding call to E01TMF. It must remain unchanged between calls.
5:     RQ(21×M+11) – REAL (KIND=nag_wp) arrayInput
On entry: must be the same array returned as parameter RQ in the preceding call to E01TMF. It must remain unchanged between calls.
6:     N – INTEGERInput
On entry: n, the number of evaluation points.
Constraint: N1.
7:     XE(5,N) – REAL (KIND=nag_wp) arrayInput
On entry: XE1:5i must be set to the evaluation point xi , for i=1,2,,n.
8:     Q(N) – REAL (KIND=nag_wp) arrayOutput
On exit: Qi contains the value of the interpolant, at xi, for i=1,2,,n. If any of these evaluation points lie outside the region of definition of the interpolant the corresponding entries in Q are set to the largest machine representable number (see X02ALF), and E01TNF returns with IFAIL=3.
9:     QX(5,N) – REAL (KIND=nag_wp) arrayOutput
On exit: QXji contains the value of the partial derivatives with respect to xj of the interpolant Q x  at xi, for i=1,2,,n, and for each of the five partial derivatives j=1,2,3,4,5. If any of these evaluation points lie outside the region of definition of the interpolant, the corresponding entries in QX are set to the largest machine representable number (see X02ALF), and E01TNF returns with IFAIL=3.
10:   IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL=1
On entry,M<23,
orN<1.
IFAIL=2
Values supplied in IQ or RQ appear to be invalid. Check that these arrays have not been corrupted between the calls to E01TMF and E01TNF.
IFAIL=3
At least one evaluation point lies outside the region of definition of the interpolant. At all such points the corresponding values in Q and QX have been set to the largest machine representable number (see X02ALF).

7  Accuracy

Computational errors should be negligible in most practical situations.

8  Further Comments

The time taken for a call to E01TNF will depend in general on the distribution of the data points. If the data points are approximately uniformly distributed, then the time taken should be only On. At worst Omn time will be required.

9  Example

This program evaluates the function
f x = 1.25 + cos5.4x5 cos6x1 cos6x2 cos6x3 6 + 6 3 x4 - 1 2
at a set of 30 randomly generated data points and calls E01TMF to construct an interpolating function Q x . It then calls E01TNF to evaluate the interpolant at a set of random points.
To reduce the time taken by this example, the number of data points is limited to 30. Increasing this value to the suggested minimum of 4000 improves the interpolation accuracy at the expense of more time.
See also Section 9 in E01TMF.

9.1  Program Text

Program Text (e01tnfe.f90)

9.2  Program Data

Program Data (e01tnfe.d)

9.3  Program Results

Program Results (e01tnfe.r)


E01TNF (PDF version)
E01 Chapter Contents
E01 Chapter Introduction
NAG Library Manual

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