logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

c_nnpntinitd - Enter single point mode

Access

       To use c_nnpntinitd, load the NCAR Graphics library ngmath.

Description

       npnts       The number of input data points. (npnts > 3)

       x           An array of size npnts containing the X coordinates of the input data points.

       y           An array of size npnts containing the Y coordinates of the input data points.

       z           An  array  of  size npnts containing the functional values of the input data points. That is,
                   z[n] is the value of the input function at coordinate (x[n],y[n]), for 0 <= n < npnts.

Function Prototype

       void c_nnpntinitd(int, double [], double [], double []);

Name

       c_nnpntinitd - Enter single point mode

See Also

       natgrid, natgrid_params, c_natgridd, c_nnpntd, c_nnpntendd.

       Complete documentation for Natgrid is available at URL
       http://ngwww.ucar.edu/ngdoc/ng/ngmath/natgrid/nnhome.html

Synopsis

       void c_nnpntinitd (npnts, x, y, z);

Usage

       This function is invoked when you want to interpolate at  individal  points.   It  is  an  initialization
       routine  that  sets  up  some  internal variables and does this initial triangulation. To actually do the
       interplation, use function c_nnpntd.  To terminate single point mode, use the function c_nnpntendd.

See Also