bundles / numpy 2.5.0.dev0+git20251130.2de293a / numpy / polynomial / chebyshev / chebline
function
numpy.polynomial.chebyshev:chebline
source: build-install/usr/lib/python3.14/site-packages/numpy/polynomial/chebyshev.py :474
Signature
def chebline ( off , scl ) Summary
Chebyshev series whose graph is a straight line.
Parameters
off, scl: scalarsThe specified line is given by
off + scl*x.
Returns
y: ndarrayThis module's representation of the Chebyshev series for
off + scl*x.
Examples
import numpy.polynomial.chebyshev as C C.chebline(3,2)✓
C.chebval(-3, C.chebline(3,2)) # should be -3
✗See also
Aliases
-
numpy.polynomial.Chebyshev._line -
numpy.polynomial.chebyshev.chebline