On this page
numpy.polynomial.hermite_e.hermefromroots
numpy.polynomial.hermite_e.hermefromroots(roots)[source]-
Generate a HermiteE series with given roots.
The function returns the coefficients of the polynomial
in HermiteE form, where the
r_nare the roots specified inroots. If a zero has multiplicity n, then it must appear inrootsn times. For instance, if 2 is a root of multiplicity three and 3 is a root of multiplicity 2, thenrootslooks something like [2, 2, 2, 3, 3]. The roots can appear in any order.If the returned coefficients are
c, thenThe coefficient of the last term is not generally 1 for monic polynomials in HermiteE form.
Parameters: -
roots : array_like -
Sequence containing the roots.
Returns: -
out : ndarray -
1-D array of coefficients. If all roots are real then
outis a real array, if some of the roots are complex, thenoutis complex even if all the coefficients in the result are real (see Examples below).
See also
polyfromroots,legfromroots,lagfromroots,hermfromroots,chebfromrootsExamples
>>> from numpy.polynomial.hermite_e import hermefromroots, hermeval >>> coef = hermefromroots((-1, 0, 1)) >>> hermeval((-1, 0, 1), coef) array([0., 0., 0.]) >>> coef = hermefromroots((-1j, 1j)) >>> hermeval((-1j, 1j), coef) array([0.+0.j, 0.+0.j]) -
© 2005–2019 NumPy Developers
Licensed under the 3-clause BSD License.
https://docs.scipy.org/doc/numpy-1.17.0/reference/generated/numpy.polynomial.hermite_e.hermefromroots.html