Generate a Laguerre series with given complex roots in Python


To generate a Laguerre series with given roots, use the laguerre.lagfromroots() method in Python Numpy. The method is a 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. The parameter roots are the sequence containing the roots.

Steps

At first, import the required library −

from numpy.polynomial import laguerre as L

To generate a Laguerre series with given roots, use the laguerre.lagfromroots() method −

j = complex(0,1)
print("Result...\n",L.lagfromroots((-j, j)))

Get the datatype −

print("\nType...\n",L.lagfromroots((-j, j)).dtype)

Get the shape −

print("\nShape...\n",L.lagfromroots((-j, j)).shape)

Example

from numpy.polynomial import laguerre as L

# To generate a Laguerre series with given roots, use the laguerre.lagfromroots() method in Python Numpy.
# The method is a 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.

# The parameter roots are the sequence containing the roots.
j = complex(0,1)

print("Result...\n",L.lagfromroots((-j, j)))

# Get the datatype
print("\nType...\n",L.lagfromroots((-j, j)).dtype)

# Get the shape
print("\nShape...\n",L.lagfromroots((-j, j)).shape)

Output

Result...
   [ 3.+0.j -4.+0.j 2.-0.j]

Type...
complex128

Shape...
(3,)

Updated on: 04-Mar-2022

81 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements