bundles / scipy latest / scipy / interpolate / _polyint / _Interpolator1D / __call__
function
scipy.interpolate._polyint:_Interpolator1D.__call__
Signature
def __call__ ( self , x ) Summary
Evaluate the interpolant
Parameters
x: array_likePoint or points at which to evaluate the interpolant.
Returns
y: array_likeInterpolated values. Shape is determined by replacing the interpolation axis in the original array with the shape of
x.
Notes
Input values x must be convertible to float values like int or float.
Aliases
-
scipy.interpolate._interpolate._Interpolator1D.__call__