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

NAG Library Routine Document

E01THF

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
    9  Example

1  Purpose

E01THF evaluates the three-dimensional interpolating function generated by E01TGF and its first partial derivatives.

2  Specification

SUBROUTINE E01THF ( M, X, Y, Z, F, IQ, LIQ, RQ, LRQ, N, U, V, W, Q, QX, QY, QZ, IFAIL)
INTEGER  M, IQ(LIQ), LIQ, LRQ, N, IFAIL
REAL (KIND=nag_wp)  X(M), Y(M), Z(M), F(M), RQ(LRQ), U(N), V(N), W(N), Q(N), QX(N), QY(N), QZ(N)

3  Description

E01THF takes as input the interpolant Qx,y,z of a set of scattered data points xr,yr,zr,fr, for r=1,2,,m, as computed by E01TGF, and evaluates the interpolant and its first partial derivatives at the set of points ui,vi,wi, for i=1,2,,n.
E01THF must only be called after a call to E01TGF.
This routine is derived from the routine QS3GRD described by Renka (1988).

4  References

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
2:     X(M) – REAL (KIND=nag_wp) arrayInput
3:     Y(M) – REAL (KIND=nag_wp) arrayInput
4:     Z(M) – REAL (KIND=nag_wp) arrayInput
5:     F(M) – REAL (KIND=nag_wp) arrayInput
On entry: M, X, Y, Z and F must be the same values as were supplied in the preceding call to E01TGF.
6:     IQ(LIQ) – INTEGER arrayInput
On entry: must be unchanged from the value returned from a previous call to E01TGF.
7:     LIQ – INTEGERInput
On entry: the dimension of the array IQ as declared in the (sub)program from which E01THF is called.
Constraint: LIQ2×M+1.
8:     RQ(LRQ) – REAL (KIND=nag_wp) arrayInput
On entry: must be unchanged from the value returned from a previous call to E01TGF.
9:     LRQ – INTEGERInput
On entry: the dimension of the array RQ as declared in the (sub)program from which E01THF is called.
Constraint: LRQ10×M+7.
10:   N – INTEGERInput
On entry: n, the number of evaluation points.
Constraint: N1.
11:   U(N) – REAL (KIND=nag_wp) arrayInput
12:   V(N) – REAL (KIND=nag_wp) arrayInput
13:   W(N) – REAL (KIND=nag_wp) arrayInput
On entry: Ui, Vi, Wi must be set to the evaluation point ui,vi,wi, for i=1,2,,n.
14:   Q(N) – REAL (KIND=nag_wp) arrayOutput
On exit: Qi contains the value of the interpolant at ui,vi,wi, 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 E01THF returns with IFAIL=3.
15:   QX(N) – REAL (KIND=nag_wp) arrayOutput
16:   QY(N) – REAL (KIND=nag_wp) arrayOutput
17:   QZ(N) – REAL (KIND=nag_wp) arrayOutput
On exit: QXi, QYi, QZi contains the value of the partial derivatives of the interpolant Qx,y,z at ui,vi,wi, for i=1,2,,n. If any of these evaluation points lie outside the region of definition of the interpolant, the corresponding entries in QX, QY and QZ are set to the largest machine representable number (see X02ALF), and E01THF returns with IFAIL=3.
18:   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<10,
orLIQ<2×M+1,
orLRQ<10×M+7,
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 E01TGF and E01THF.
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, QX, QY and QZ 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 E01THF will depend in general on the distribution of the data points. If X, Y and Z are approximately uniformly distributed, then the time taken should be only ON. At worst OMN time will be required.

9  Example

See Section 9 in E01TGF.

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

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