1d interpolation for non-periodic functions.
FUNCTION CURV2 (T, N, X, Y, YP, SIGMA)
This function interpolates a value at a specified point using a spline under tension. CURV1 must be called prior to calling CURV2, and the values thus obtained used as input to CURV2. CURV2 returns the interpolated function value at the X-coordinate specified.
(real, input) The abscissa for which an interpolated function value is desired.
(integer, input) The number of input data values. (N > 1)
(real, input) An array containing the abscissae for the input function.
(real, input) An array containing the functional values of the input data -- Y(K) is the functional value at X(K) for K=1,N.
(real, input) Contains values for the second derivative (as calculated by CURV1).
(real, input) Tension factor. Values near zero result in a cubic spline; large values (e.g. 50) result in nearly a polygonal line. A typical value is 1.
CURV2 returns the interpolated value at the specified point T.
To use CURV2, load the NCAR Graphics library ngmath.
curv1, fitgrid_params.
Complete documentation for Fitgrid is available at URL
http://ngwww.ucar.edu/ngdoc/ng/ngmath/fitgrid/fithome.html
Copyright (C) 2000
University Corporation for Atmospheric Research
The use of this Software is governed by a License Agreement.