在 Python 中將 Hermite_e 級數轉換為多項式
若要將 Hermite_e 級數轉換為多項式,請在 Python Numpy 中使用 hermite_e.herme2poly() 方法。將表示 Hermite_e 級數的係數的陣列(從最低次數到最高次數排列)轉換為等價多項式的係數陣列(相對於“標準”基準),從最低次數到最高次數排列。該方法返回一個一維陣列,其中包含等價多項式的係數(相對於“標準”基準),從最低次項到最高次項排列。引數 c 是一個一維陣列,其中包含 Hermite 級數的係數,從最低次項到最高次項排列。
步驟
首先,匯入所需的庫 -
import numpy as np from numpy.polynomial import hermite_e as H
使用 numpy.array() 方法建立一個數組 -
c = np.array([1, 2, 3, 4, 5])
顯示陣列 -
print("Our Array...\n",c)檢查維度 -
print("\nDimensions of our Array...\n",c.ndim)獲取資料型別 -
print("\nDatatype of our Array object...\n",c.dtype)獲取形狀 -
print("\nShape of our Array object...\n",c.shape)若要將 Hermite_e 級數轉換為多項式,請在 Python 中使用 hermite_e.herme2poly() 方法 -
print("\nResult (hermite_e to polynomial)...\n",H.herme2poly(c))示例
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))輸出
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.]
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP