एक लीजेंड्रे श्रृंखला की जड़ों की गणना करने के लिए, Python में polynomial.legendre.lagroots() विधि का उपयोग करें। विधि श्रृंखला की जड़ों की एक सरणी देता है। यदि सभी मूल वास्तविक हैं, तो आउट भी वास्तविक है, अन्यथा यह जटिल है। पैरामीटर c गुणांकों की 1-डी सरणी है।
कदम
सबसे पहले, आवश्यक पुस्तकालय आयात करें -
from numpy.polynomial import legendre as L
लीजेंड्रे श्रृंखला की जड़ों की गणना करें -
j = complex(0,1) print("Result...\n",L.legroots((-j, j)))
डेटाटाइप प्राप्त करें -
print("\nType...\n",L.legroots((-j, j)).dtype)
आकार प्राप्त करें -
print("\nShape...\n",L.legroots((-j, j)).shape)
उदाहरण
from numpy.polynomial import legendre as L # To compute the roots of a Legendre series, use the polynomial.legendre.lagroots() method in Python # The method returns an array of the roots of the series. If all the roots are real, then out is also real, otherwise it is complex. # The parameter c is a 1-D array of coefficients. j = complex(0,1) print("Result...\n",L.legroots((-j, j))) # Get the datatype print("\nType...\n",L.legroots((-j, j)).dtype) # Get the shape print("\nShape...\n",L.legroots((-j, j)).shape)
आउटपुट
Result... [1.+0.j] Type... complex128 Shape... (1,)