c_natgrids(3NCARG) | NCAR GRAPHICS | c_natgrids(3NCARG) |
c_natgrids - primary C entry for natural neighbor gridding
float *c_natgrids(int, float [], float [], float [],
int, int, float [], float [], int *);
float *c_natgrids (npnts, x, y, z, numxout, numyout, xi, yi, ier);
c_natgrids returns a pointer to a linear array of data that is the interpolated grid stored in row-major order. That is, if out is declared as
float *out;
and we set:
out = c_natgrids(numin, x, y, z, numxout, numyout, xo, yo, &ier);
then out[i*numyout+j] is the interpolated function value at coordinate point (xo[i],yo[j]) for 0 <= i < numxout and 0 <= j < numyout. The space for out is allocated internal to c_natgrids and is numxout*numyout floats in size.
To use c_natgrids, load the NCAR Graphics library ngmath.
natgrid, natgrid_params, c_nnseti, c_nngeti, c_nnsetr, c_nngetr, c_nnsetc, c_nngetc.
Complete documentation for Natgrid is available at URL
http://ngwww.ucar.edu/ngdoc/ng/ngmath/natgrid/nnhome.html
Copyright (C) 2000
University Corporation for Atmospheric Research
The use of this Software is governed by a License Agreement.
March 1997-1998 | UNIX |