This is a pre-release version (2.5.0.dev0+git20251130.2de293a). Go to latest (2.4.4)
{ } Raw JSON

bundles / numpy 2.5.0.dev0+git20251130.2de293a / numpy / polynomial / chebyshev / chebfromroots

function

numpy.polynomial.chebyshev:chebfromroots

source: build-install/usr/lib/python3.14/site-packages/numpy/polynomial/chebyshev.py :512

Signature

def   chebfromroots ( roots )

Summary

Generate a Chebyshev series with given roots.

Extended Summary

The function returns the coefficients of the polynomial

in Chebyshev form, where the are the roots specified in roots. If a zero has multiplicity n, then it must appear in roots n times. For instance, if 2 is a root of multiplicity three and 3 is a root of multiplicity 2, then roots looks something like [2, 2, 2, 3, 3]. The roots can appear in any order.

If the returned coefficients are c, then

The coefficient of the last term is not generally 1 for monic polynomials in Chebyshev form.

Parameters

roots : array_like

Sequence containing the roots.

Returns

out : ndarray

1-D array of coefficients. If all roots are real then out is a real array, if some of the roots are complex, then out is complex even if all the coefficients in the result are real (see Examples below).

Examples

import numpy.polynomial.chebyshev as C
C.chebfromroots((-1,0,1)) # x^3 - x relative to the standard basis
j = complex(0,1)
C.chebfromroots((-j,j)) # x^2 + 1 relative to the standard basis

See also

numpy.polynomial.hermite.hermfromroots
numpy.polynomial.hermite_e.hermefromroots
numpy.polynomial.laguerre.lagfromroots
numpy.polynomial.legendre.legfromroots
numpy.polynomial.polynomial.polyfromroots

Aliases

  • numpy.polynomial.Chebyshev._fromroots
  • numpy.polynomial.chebyshev.chebfromroots