Để chuyển đổi chuỗi Hermite_e thành đa thức, hãy sử dụng phương thức hermite_e.herme2poly () trong PythonNumpy. Chuyển đổi một mảng đại diện cho các hệ số của một chuỗi Hermite_e, được sắp xếp từ mức độ thấp nhất đến cao nhất, thành một mảng các hệ số của đa thức tương đương (liên quan đến cơ sở "tiêu chuẩn") được sắp xếp từ mức độ thấp nhất đến mức độ cao nhất. Phương thức trả về một mảng 1-D chứa các hệ số của đa thức tương đương (liên quan đến cơ sở "tiêu chuẩn") được sắp xếp từ số hạng thứ tự thấp nhất đến cao nhất. Tham số c, là mảng 1-D chứa các hệ số của chuỗi Hermite, được sắp xếp từ số hạng thứ tự thấp nhất đến cao nhất.
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 hermite_e as H
Tạo một mảng bằng phương thức numpy.array () -
c = np.array([1, 2, 3, 4, 5])
Hiển thị mảng -
print("Our Array...\n",c)
Kiểm tra các thứ nguyên -
print("\nDimensions of our Array...\n",c.ndim)
Lấy Datatype -
print("\nDatatype of our Array object...\n",c.dtype)
Lấy hình dạng -
print("\nShape of our Array object...\n",c.shape)
Để chuyển đổi chuỗi Hermite_e thành đa thức, hãy sử dụng phương thức hermite_e.herme2poly () trong Python -
print("\nResult (hermite_e to polynomial)...\n",H.herme2poly(c))
Ví dụ
import numpy as np from numpy.polynomial import hermite_e as H # Create an array using the numpy.array() method c = np.array([1, 2, 3, 4, 5]) # Display the array print("Our Array...\n",c) # Check the Dimensions print("\nDimensions of our Array...\n",c.ndim) # Get the Datatype print("\nDatatype of our Array object...\n",c.dtype) # Get the Shape print("\nShape of our Array object...\n",c.shape) # To convert a Hermite_e series to a polynomial, use the hermite_e.herme2poly() method in Python Numpy print("\nResult (hermite_e to polynomial)...\n",H.herme2poly(c))
Đầu ra
Our Array... [1 2 3 4 5] Dimensions of our Array... 1 Datatype of our Array object... int64 Shape of our Array object... (5,) Result (hermite_e to polynomial)... [ 13. -10. -27. 4. 5.]