Forum archive 2000-2006

Michael Gage - hermite

Michael Gage - hermite

by Arnold Pizer -
Number of replies: 0
inactiveTopichermite topic started 8/28/2001; 8:19:38 PM
last post 8/28/2001; 8:19:38 PM
userMichael Gage - hermite  blueArrow
8/28/2001; 8:19:38 PM (reads: 2246, responses: 0)

hermite

Description
Produces a reference to a subroutine which evaluates a polynomial passing through the specified points
with the specified derivatives: (x0,y0,yp0), ...

The polynomial will be of high degree and may wobble unexpectedly. Use the Hermite splines
described below and in Hermite.pm for most graphing purposes.

Syntax

$poly = hermit([$x0,$x1...],[$y0,$y1...],[$yp0,$yp1,...]);
$y = &$poly(34);
yields the y value at 34.

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.

Returns

A reference to a function of one variable representing the polynomial.

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.

This subroutine is defined in PGnumericalmacros.pl.

See Also

hermite_spline, Hermite.pm

 

<| Post or View Comments |>