Để tạo một chuỗi Chebyshev với các gốc đã cho, hãy sử dụng phương thức chebyshev.chebfromaries () 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 -
import numpy as np from numpy.polynomial import chebyshev as C
Để tạo chuỗi Chebyshev với các gốc đã cho, hãy sử dụng phương thức chebyshev.chebfromosystem () trongPython Numpy -
print("Result...\n",C.chebfromroots((-1,0,1)))
Nhận loại dữ liệu -
print("\nType...\n",C.chebfromroots((-1,0,1)).dtype)
Lấy hình dạng -
print("\nShape...\n",C.chebfromroots((-1,0,1)).shape)
Ví dụ
import numpy as np from numpy.polynomial import chebyshev as C # To generate a Chebyshev series with given roots, use the chebyshev.chebfromroots() method in Python Numpy. print("Result...\n",C.chebfromroots((-1,0,1))) # Get the datatype print("\nType...\n",C.chebfromroots((-1,0,1)).dtype) # Get the shape print("\nShape...\n",C.chebfromroots((-1,0,1)).shape)
Đầu ra
Result... [ 0. -0.25 0. 0.25] Type... float64 Shape... (4,)