chebinterpolate(func, deg, args=())
Returns the Chebyshev series that interpolates :None:None:`func`
at the Chebyshev points of the first kind in the interval [-1, 1]. The interpolating series tends to a minmax approximation to :None:None:`func`
with increasing :None:None:`deg`
if the function is continuous in the interval.
The Chebyshev polynomials used in the interpolation are orthogonal when sampled at the Chebyshev points of the first kind. If it is desired to constrain some of the coefficients they can simply be set to the desired value after the interpolation, no new interpolation or fit is needed. This is especially useful if it is known apriori that some of coefficients are zero. For instance, if the function is even then the coefficients of the terms of odd degree in the result can be set to zero.
The function to be approximated. 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 :None:None:`args`
parameter.
Degree of the interpolating polynomial
Extra arguments to be used in the function call. Default is no extra arguments.
Chebyshev coefficients of the interpolating series ordered from low to high.
Interpolate a function at the Chebyshev points of the first kind.
>>> import numpy.polynomial.chebyshev as CSee :
... C.chebfromfunction(lambda x: np.tanh(x) + 0.5, 8) array([ 5.00000000e-01, 8.11675684e-01, -9.86864911e-17, -5.42457905e-02, -2.71387850e-16, 4.51658839e-03, 2.46716228e-17, -3.79694221e-04, -3.26899002e-16])
Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.
Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)
SVG is more flexible but power hungry; and does not scale well to 50 + nodes.
All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them