numpy 1.22.4 Pypi GitHub Homepage
Other Docs
ParametersReturnsBackRef
chebline(off, scl)

Parameters

off, scl : scalars

The specified line is given by off + scl*x .

Returns

y : ndarray

This module's representation of the Chebyshev series for off + scl*x .

Chebyshev series whose graph is a straight line.

See Also

numpy.polynomial.hermite.hermline
numpy.polynomial.hermite_e.hermeline
numpy.polynomial.laguerre.lagline
numpy.polynomial.legendre.legline
numpy.polynomial.polynomial.polyline

Examples

>>> import numpy.polynomial.chebyshev as C
... C.chebline(3,2) array([3, 2])
>>> C.chebval(-3, C.chebline(3,2)) # should be -3
-3.0
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

numpy.polynomial.hermite_e.hermeline numpy.polynomial.hermite.hermline numpy.polynomial.polynomial.polyline numpy.polynomial.legendre.legline numpy.polynomial.laguerre.lagline

Local connectivity graph

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


GitHub : /numpy/polynomial/chebyshev.py#476
type: <class 'function'>
Commit: