Để tạo chuỗi Hermite_e với các gốc đã cho, hãy sử dụng phương thức hermite_e.hermefromaries () trongPython Numpy. Phương thức 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. Các gốc tham số là trình tự chứa các gốc.
Các bước
Đầu tiên, hãy nhập thư viện được yêu cầu -
from numpy.polynomial import hermite_e as H
Tạo chuỗi Hermite_e với các gốc đã cho -
print("Result...\n",H.hermefromroots((-1,0,1)))
Nhận loại dữ liệu -
print("\nType...\n",H.hermefromroots((-1,0,1)).dtype)
Lấy hình dạng -
print("\nShape...\n",H.hermefromroots((-1,0,1)).shape)
Ví dụ
from numpy.polynomial import hermite_e as H # To generate a Hermite_e series with given roots, use the hermite_e.hermefromroots() method in Python Numpy. print("Result...\n",H.hermefromroots((-1,0,1))) # Get the datatype print("\nType...\n",H.hermefromroots((-1,0,1)).dtype) # Get the shape print("\nShape...\n",H.hermefromroots((-1,0,1)).shape)
Đầu ra
Result... [0. 2. 0. 1.] Type... float64 Shape... (4,)