numpy.polynomial.laguerre.lagfromroots
-
numpy.polynomial.laguerre.lagfromroots(roots)
[source] -
Generate a Laguerre series with given roots.
The function returns the coefficients of the polynomial
in Laguerre form, where the
r_n
are the roots specified inroots
. If a zero has multiplicity n, then it must appear inroots
n times. For instance, if 2 is a root of multiplicity three and 3 is a root of multiplicity 2, thenroots
looks 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 Laguerre form.
- Parameters
-
-
rootsarray_like
-
Sequence containing the roots.
-
- Returns
-
-
outndarray
-
1-D array of coefficients. If all roots are real then
out
is a real array, if some of the roots are complex, thenout
is complex even if all the coefficients in the result are real (see Examples below).
-
See also
polyfromroots
,legfromroots
,chebfromroots
,hermfromroots
,hermefromroots
Examples
>>> from numpy.polynomial.laguerre import lagfromroots, lagval >>> coef = lagfromroots((-1, 0, 1)) >>> lagval((-1, 0, 1), coef) array([0., 0., 0.]) >>> coef = lagfromroots((-1j, 1j)) >>> lagval((-1j, 1j), coef) array([0.+0.j, 0.+0.j])
© 2005–2020 NumPy Developers
Licensed under the 3-clause BSD License.
https://numpy.org/doc/1.19/reference/generated/numpy.polynomial.laguerre.lagfromroots.html