NAG Library Routine Document

e01eaf (dim2_triangulate)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

e01eaf generates a triangulation for a given set of two-dimensional points using the method of Renka and Cline.

2
Specification

Fortran Interface
Subroutine e01eaf ( n, x, y, triang, ifail)
Integer, Intent (In):: n
Integer, Intent (Inout):: ifail
Integer, Intent (Out):: triang(7*n)
Real (Kind=nag_wp), Intent (In):: x(n), y(n)
C Header Interface
#include nagmk26.h
void  e01eaf_ (const Integer *n, const double x[], const double y[], Integer triang[], Integer *ifail)

3
Description

e01eaf creates a Thiessen triangulation with a given set of two-dimensional data points as nodes. This triangulation will be as equiangular as possible (Cline and Renka (1984)). See Renka and Cline (1984) for more detailed information on the algorithm, a development of that by Lawson (1977). The code is derived from Renka (1984).
The computed triangulation is returned in a form suitable for passing to e01ebf which, for a set of nodal function values, computes interpolated values at a set of points.

4
References

Cline A K and Renka R L (1984) A storage-efficient method for construction of a Thiessen triangulation Rocky Mountain J. Math. 14 119–139
Lawson C L (1977) Software for C1 surface interpolation Mathematical Software III (ed J R Rice) 161–194 Academic Press
Renka R L (1984) Algorithm 624: triangulation and interpolation of arbitrarily distributed points in the plane ACM Trans. Math. Software 10 440–442
Renka R L and Cline A K (1984) A triangle-based C1 interpolation method Rocky Mountain J. Math. 14 223–237

5
Arguments

1:     n – IntegerInput
On entry: n, the number of data points.
Constraint: n3.
2:     xn – Real (Kind=nag_wp) arrayInput
On entry: the x coordinates of the n data points.
3:     yn – Real (Kind=nag_wp) arrayInput
On entry: the y coordinates of the n data points.
4:     triang7×n – Integer arrayOutput
On exit: a data structure defining the computed triangulation, in a form suitable for passing to e01ebf. Details of how the triangulation is encoded in triang are given in Section 9. These details are most likely to be of use when plotting the computed triangulation which is demonstrated in Section 10.
5:     ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1​ or ​1. 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 -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 argument, 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, n=value.
Constraint: n3.
ifail=2
On entry, all the x,y pairs are collinear.
ifail=-99
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.
ifail=-399
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.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

Not applicable.

8
Parallelism and Performance

e01eaf is not threaded in any implementation.

9
Further Comments

The time taken for a call of e01eaf is approximately proportional to the number of data points, n. The routine is more efficient if, before entry, the x,y pairs are arranged in x and y such that the x values are in ascending order.
The triangulation is encoded in triang as follows:

10
Example

In this example, e01eaf creates a triangulation from a set of data points. e01ebf then evaluates the interpolant at a sample of points using this triangulation. Note that this example is not typical of a realistic problem: the number of data points would normally be larger, so that interpolants can be more accurately evaluated at the fine triangulated grid.

10.1
Program Text

Program Text (e01eafe.f90)

10.2
Program Data

Program Data (e01eafe.d)

10.3
Program Results

Program Results (e01eafe.r)

GnuplotProduced by GNUPLOT 4.6 patchlevel 3 0 5 10 15 20 0 5 10 15 20 25 Example Program Thiessen Triangulation for given Data Points gnuplot_plot_1
© The Numerical Algorithms Group Ltd, Oxford, UK. 2017