Để tính toán gốc của chuỗi Legendre, hãy sử dụng phương thức polynomial.legendre.legosystem () trongPython. Phương thức này trả về một mảng gốc của chuỗi. Nếu tất cả các gốc là thật, thì bên ngoài cũng là thật, nếu không thì phức tạp. Tham số c là mảng hệ số 1-D.
Các bước
Đầu tiên, hãy nhập thư viện được yêu cầu -
from numpy.polynomial import legendre as L
Để tính toán gốc của chuỗi Legendre, hãy sử dụng phương thức polynomial.legendre.legosystem () trongPython -
print("Result...\n",L.legroots((0, 1, 2)))
Nhận loại dữ liệu -
print("\nType...\n",L.legroots((0, 1, 2)).dtype)
Lấy hình dạng -
print("\nShape...\n",L.legroots((0, 1, 2)).shape)
Ví dụ
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)
Đầu ra
Result... [-0.76759188 0.43425855] Type... float64 Shape... (2,)