Convenience function for polynomial interpolation.
See KroghInterpolator for more details.
Parameters : | xi : array_like
yi : array_like
x : array_like
der : int or list
axis : int, optional
|
---|---|
Returns : | d : ndarray
|
See also
Notes
Construction of the interpolating polynomial is a relatively expensive process. If you want to evaluate it repeatedly consider using the class KroghInterpolator (which is what this function uses).