{ } Raw JSON

bundles / scipy 1.17.1 / scipy / interpolate / _polyint / _Interpolator1D / __call__

function

scipy.interpolate._polyint:_Interpolator1D.__call__

source: /scipy/interpolate/_polyint.py :64

Signature

def   __call__ ( self x )

Summary

Evaluate the interpolant

Parameters

x : array_like

Point or points at which to evaluate the interpolant.

Returns

y : array_like

Interpolated 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__