nag_3d_shep_eval (e01thc) (PDF version)
e01 Chapter Contents
e01 Chapter Introduction
NAG Library Manual

NAG Library Function Document

nag_3d_shep_eval (e01thc)

+ Contents

    1  Purpose
    7  Accuracy
    10  Example

1  Purpose

nag_3d_shep_eval (e01thc) evaluates the three-dimensional interpolating function generated by nag_3d_shep_interp (e01tgc) and its first partial derivatives.

2  Specification

#include <nag.h>
#include <nage01.h>
void  nag_3d_shep_eval (Integer m, const double x[], const double y[], const double z[], const double f[], const Integer iq[], const double rq[], Integer n, const double u[], const double v[], const double w[], double q[], double qx[], double qy[], double qz[], NagError *fail)

3  Description

nag_3d_shep_eval (e01thc) 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 nag_3d_shep_interp (e01tgc), and evaluates the interpolant and its first partial derivatives at the set of points ui,vi,wi, for i=1,2,,n.
nag_3d_shep_eval (e01thc) must only be called after a call to nag_3d_shep_interp (e01tgc).
This function is derived from the function 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  Arguments

1:     mIntegerInput
2:     x[m]const doubleInput
3:     y[m]const doubleInput
4:     z[m]const doubleInput
5:     f[m]const doubleInput
On entry: m, x, y, z and f must be the same values as were supplied in the preceding call to nag_3d_shep_interp (e01tgc).
6:     iq[2×m+1]const IntegerInput
On entry: must be unchanged from the value returned from a previous call to nag_3d_shep_interp (e01tgc).
7:     rq[10×m+7]const doubleInput
On entry: must be unchanged from the value returned from a previous call to nag_3d_shep_interp (e01tgc).
8:     nIntegerInput
On entry: n, the number of evaluation points.
Constraint: n1.
9:     u[n]const doubleInput
10:   v[n]const doubleInput
11:   w[n]const doubleInput
On entry: u[i-1], v[i-1], w[i-1] must be set to the evaluation point ui,vi,wi, for i=1,2,,n.
12:   q[n]doubleOutput
On exit: q[i-1] 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 nag_real_largest_number (X02ALC)), and nag_3d_shep_eval (e01thc) returns with fail.code= NE_BAD_POINT.
13:   qx[n]doubleOutput
14:   qy[n]doubleOutput
15:   qz[n]doubleOutput
On exit: qx[i-1], qy[i-1], qz[i-1] 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 nag_real_largest_number (X02ALC)), and nag_3d_shep_eval (e01thc) returns with fail.code= NE_BAD_POINT.
16:   failNagError *Input/Output
The NAG error argument (see Section 3.6 in the Essential Introduction).

6  Error Indicators and Warnings

NE_BAD_PARAM
On entry, argument value had an illegal value.
NE_BAD_POINT
On entry, 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 nag_real_largest_number: nag_real_largest_number=value.
NE_INT
On entry, m=value.
Constraint: m10.
On entry, n=value.
Constraint: n1.
NE_INT_ARRAY
On entry, values in iq appear to be invalid. Check that iq has not been corrupted between calls to nag_3d_shep_interp (e01tgc) and nag_3d_shep_eval (e01thc).
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
NE_REAL_ARRAY
On entry, values in rq appear to be invalid. Check that rq has not been corrupted between calls to nag_3d_shep_interp (e01tgc) and nag_3d_shep_eval (e01thc).

7  Accuracy

Computational errors should be negligible in most practical situations.

8  Parallelism and Performance

nag_3d_shep_eval (e01thc) is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
Please consult the Users' Note for your implementation for any additional implementation-specific information.

9  Further Comments

The time taken for a call to nag_3d_shep_eval (e01thc) 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.

10  Example

See Section 10 in nag_3d_shep_interp (e01tgc).

nag_3d_shep_eval (e01thc) (PDF version)
e01 Chapter Contents
e01 Chapter Introduction
NAG Library Manual

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