This is documentation for an old release of SciPy (version 0.12.0). Read this page in the documentation of the latest stable release (version 1.15.1).
Evaluate the interpolating polynomial at the points x
Parameters : | x : array-like
|
---|---|
Returns : | y : array-like
|
Notes
Currently the code computes an outer product between x and the weights, that is, it constructs an intermediate array of size N by len(x), where N is the degree of the polynomial.