method
Interpolate a function at the Chebyshev points of the first kind.
Returns the series that interpolates func at the Chebyshev points of the first kind scaled and shifted to the domain. The resulting series tends to a minmax approximation of func when the function is continuous in the domain.
The function to be interpolated. It must be a function of a single variable of the form f(x, a, b, c...), where a, b, c... are extra arguments passed in the args parameter.
Degree of the interpolating polynomial.
Domain over which func is interpolated. The default is None, in which case the domain is [-1, 1].
Extra arguments to be used in the function call. Default is no extra arguments.
Interpolating Chebyshev instance.
See numpy.polynomial.chebinterpolate for more details.
© 2005–2024 NumPy Developers
Licensed under the 3-clause BSD License.
https://numpy.org/doc/2.4/reference/generated/numpy.polynomial.chebyshev.Chebyshev.interpolate.html