1NNPNTINITD(3NCARG) NCAR GRAPHICS NNPNTINITD(3NCARG)
2
3
4
6 NNPNTINITD- Enter single point mode in double precision
7
9 CALL NNPNTINITD (NPNTS, X, Y, Z)
10
12 NPNTS (Integer, Input) - The number of input data points. (NPNTS
13 > 3).
14
15 X (Double precison, Input) - An array of dimension NPNTS con‐
16 taining the X coordinates of the input data points.
17
18 Y (Double precison, Input) - An array of dimension NPNTS con‐
19 taining the Y coordinates of the input data points.
20
21 Z (Double precison, Input) - An array of dimension NPNTS con‐
22 taining the functional values of the input data points.
23 That is, Z(L) is the value of the input function at coordi‐
24 nate (X(L),Y(L)), for L=1,NPNTS.
25
27 This subroutine is called when you want to interpolate at individal
28 points. It is an initialization routine that sets up some internal
29 variables and does this initial triangulation. To actually do the
30 interplation, use subroutine NNPNTD. To terminate single point mode,
31 use the subroutine NNPNTENDD.
32
34 To use NNPNTINITD, load the NCAR Graphics library ngmath.
35
37 natgrid, natgrid_params, natgridd, nnpntd, nnpntendd.
38
39 Complete documentation for Natgrid is available at URL
40 http://ngwww.ucar.edu/ngdoc/ng/ngmath/natgrid/nnhome.html
41
43 Copyright (C) 2000
44 University Corporation for Atmospheric Research
45
46 The use of this Software is governed by a License Agreement.
47
48
49
50UNIX March 1997-1998 NNPNTINITD(3NCARG)