Để tạo chuỗi Legendre, hãy sử dụng phương thức polynomial.legendre.legfromosystem () trong Python. Themethod trả về mảng hệ số 1-D. Nếu tất cả các gốc là thực thì out là một mảng thực, nếu một số gốc là phức, thì out là phức ngay cả khi tất cả các hệ số trong kết quả là thực. Rễ tham số là trình tự chứa các rễ.
Các bước
Đầu tiên, hãy nhập thư viện được yêu cầu -
import numpy as np from numpy.polynomial import legendre as L
Để tạo chuỗi Legendre, hãy sử dụng phương thức polynomial.legendre.legfromosystem () trong Python -
print("Result...\n",L.legfromroots((-1,0,1)))
Nhận loại dữ liệu -
print("\nType...\n",L.legfromroots((-1,0,1)).dtype)
Lấy hình dạng -
print("\nShape...\n",L.legfromroots((-1,0,1)).shape)
Ví dụ
import numpy as np from numpy.polynomial import legendre as L # To generate a Legendre series, use the polynomial.legendre.legfromroots() method in Python print("Result...\n",L.legfromroots((-1,0,1))) # Get the datatype print("\nType...\n",L.legfromroots((-1,0,1)).dtype) # Get the shape print("\nShape...\n",L.legfromroots((-1,0,1)).shape)
Đầu ra
Result... [ 0. -0.4 0. 0.4] Type... float64 Shape... (4,)