hermite_spline | topic started 8/28/2001; 8:27:12 PM last post 8/28/2001; 8:27:12 PM |
Michael Gage - hermite_spline 8/28/2001; 8:27:12 PM (reads: 2119, responses: 0) |
hermite_splineDescriptionProduces a reference to a subroutine which evaluates a C^1 piecewise cubic polynomial passing through the specified points with the specified derivatives: (x0,y0,yp0), ... Syntax
Params References to three arrays, specifying respectively the x, y and y' values to be interpolated by the Hermite polynomial. All of the parameters are required. There are no defaults. The x values must be strictly increasing. Returns A reference to a function of one variable representing the polynomial. The domain of the function is the closed interval spanned by the x values used in its definition. Notes The Hermite polynomial objects give the most versatile version of Hermite spline approximation. Except in rare cases they are likely to be the most appropriate choice for specifying graphs. The function hermite produces a reference to a high degree polynomial interpolating specified points and slopes. See Also hermite, Hermite.pm, cubic_spline
|