将Hermite_e级数转换为Python中的多项式
要将Hermite_e级数转换为多项式,请使用Python的hermite_e.herme2poly()方法Numpy。将表示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
# 使用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))
输出
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.]