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

WBOY
发布: 2023-09-08 08:25:02
转载
1274人浏览过

将一个多项式转换为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])
登录后复制

显示数组 −

立即学习Python免费学习笔记(深入)”;

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级数的详细内容,更多请关注php中文网其它相关文章!

python速学教程(入门到精通)
python速学教程(入门到精通)

python怎么学习?python怎么入门?python在哪学?python怎么学才快?不用担心,这里为大家提供了python速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:tutorialspoint网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号