একটি Legendre সিরিজের মূল গণনা করতে, Python-এ polynomial.legendre.legroots() পদ্ধতি ব্যবহার করুন। পদ্ধতিটি সিরিজের শিকড়গুলির একটি অ্যারে প্রদান করে। যদি সমস্ত শিকড় বাস্তব হয়, তাহলে আউটও বাস্তব, অন্যথায় এটি জটিল। প্যারামিটার c হল একটি 1-D অ্যারে সহগ।
পদক্ষেপ
প্রথমে, প্রয়োজনীয় লাইব্রেরি আমদানি করুন -
from numpy.polynomial import legendre as L
একটি Legendre সিরিজের মূল গণনা করতে, Python -
-এ polynomial.legendre.legroots() পদ্ধতি ব্যবহার করুনprint("Result...\n",L.legroots((0, 1, 2)))
ডেটাটাইপ −
পানprint("\nType...\n",L.legroots((0, 1, 2)).dtype)
আকৃতি −
পানprint("\nShape...\n",L.legroots((0, 1, 2)).shape)
উদাহরণ
L# হিসাবে numpy.polynomial import legendre থেকেfrom numpy.polynomial import legendre as L # To compute the roots of a Legendre series, use the polynomial.legendre.legroots() method in Python print("Result...\n",L.legroots((0, 1, 2))) # Get the datatype print("\nType...\n",L.legroots((0, 1, 2)).dtype) # Get the shape print("\nShape...\n",L.legroots((0, 1, 2)).shape)
আউটপুট
Result... [-0.76759188 0.43425855] Type... float64 Shape... (2,)