1NNPNTINITS(3NCARG) NCAR GRAPHICS NNPNTINITS(3NCARG)
2
3
4
6 NNPNTINITS- Enter single point mode
7
9 CALL NNPNTINITS (NPNTS, X, Y, Z)
10
12 NPNTS (Integer, Input) - The number of input data points. (NPNTS
13 > 3).
14
15 X (Real, Input) - An array of dimension NPNTS containing the
16 X coordinates of the input data points.
17
18 Y (Real, Input) - An array of dimension NPNTS containing the
19 Y coordinates of the input data points.
20
21 Z (Real, Input) - An array of dimension NPNTS containing the
22 functional values of the input data points. That is, Z(L)
23 is the value of the input function at coordinate
24 (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 NNPNTS. To terminate single point mode,
31 use the subroutine NNPNTEND.
32
34 To use NNPNTINITS, load the NCAR Graphics library ngmath.
35
37 natgrid, natgrid_params, natgrids, nnpnts, nnpntend.
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 NNPNTINITS(3NCARG)