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 This documentation is free software; you can redistribute it and/or
47 modify it under the terms of the GNU General Public License as pub‐
48 lished by the Free Software Foundation; either version 2 of the
49 License, or (at your option) any later version.
50
51 This software is distributed in the hope that it will be useful, but
52 WITHOUT ANY WARRANTY; without even the implied warranty of MER‐
53 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
54 Public License for more details.
55
56 You should have received a copy of the GNU General Public License along
57 with this software; if not, write to the Free Software Foundation,
58 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
59
60
61
62
63UNIX March 1997-1998 NNPNTINITD(3NCARG)