微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

将一个多项式转换为Python中的Hermite_e级数

将一个多项式转换为Python中的Hermite_e级数

要将多项式转换为hermite级数,请在Python中使用hermite_e.poly2herme()方法

Numpy. Convert an array representing the coefficients of a polynomial ordered from lowest degree 到最高点,到等效hermite级数的系数数组,从低到高排序 最高次数。该方法返回一个包含等效系数的一维数组 hermite系列。参数pol是一个包含多项式系数的1-D数组

步骤

首先,导入所需的库 −

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级数,请在Python中使用hermite_e.poly2herme()方法

Numpy. Convert an array representing the coefficients of a polynomial ordered from lowest degree 到最高点,到等效hermite级数的系数数组,从低到高排序 最高学位 −
print("\nResult (polynomial to hermite_e)...\n",H.poly2herme(c))

Example

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 polynomial to a hermite series, use the hermite_e.poly2herme() method in Python Numpy
print("\nResult (polynomial to hermite_e)...\n",H.poly2herme(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 (polynomial to hermite_e)...
   [19. 14. 33. 4. 5.]

以上就是将一个多项式转换为Python中的hermite_e级数的详细内容,更多请关注编程之家其它相关文章

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐