本文简要介绍 python 语言中 numpy.polynomial.hermite_e.hermeint
的用法。
用法:
polynomial.hermite_e.hermeint(c, m=1, k=[], lbnd=0, scl=1, axis=0)
集成 Hermite_e 系列。
返回 Hermite_e 系列系数c融合的m次从lbnd沿着轴.在每次迭代中,结果序列是倍增经过scl和一个积分常数,k, 被添加。比例因子用于变量的线性变化。 (“Buyer beware”:请注意,根据一个人在做什么,一个人可能想要scl成为人们可能期望的倒数;有关详细信息,请参阅下面的注释部分。)参数c是沿每个轴从低到高的系数数组,例如,[1,2,3] 表示系列
H_0 + 2*H_1 + 3*H_2
而 [[1,2],[1,2]] 表示1*H_0(x)*H_0(y) + 1*H_1(x)*H_0(y) + 2*H_0(x)*H_1(y) + 2*H_1(x)*H_1(y)
如果轴 = 0 是x
和轴= 1 是y
.- c: array_like
Hermite_e 系列系数的数组。如果 c 是多维的,则不同的轴对应于不同的变量,每个轴的度数由相应的索引给出。
- m: 整数,可选
积分顺序,必须是正数。 (默认值:1)
- k: {[],列表,标量},可选
积分常数。
lbnd
处的第一个整数的值是列表中的第一个值,lbnd
处的第二个整数的值是第二个值,依此类推。如果k == []
(默认值),所有常量都设置为零.如果m == 1
,可以给出单个标量而不是列表。- lbnd: 标量,可选
积分的下界。 (默认值:0)
- scl: 标量,可选
在每次积分之后,在添加积分常数之前,结果会乘以 scl。 (默认值:1)
- axis: 整数,可选
进行积分的轴。 (默认值:0)。
- S: ndarray
Hermite_e 级数的积分系数。
- ValueError
如果
m < 0
、len(k) > m
、np.ndim(lbnd) != 0
或np.ndim(scl) != 0
。
参数:
返回:
抛出:
注意:
请注意,每次积分的结果是倍增经过scl.为什么要注意这一点?假设正在对变量进行线性变化
在一个积分相对于x.然后 ,所以需要设置scl等于 - 也许不是人们首先想到的。另请注意,一般情况下,将C-series 积分的结果需要是“reprojected” 到C-series 基组上。因此,通常,此函数的结果是“unintuitive,”,尽管它是正确的;请参阅下面的示例部分。
例子:
>>> from numpy.polynomial.hermite_e import hermeint >>> hermeint([1, 2, 3]) # integrate once, value 0 at 0. array([1., 1., 1., 1.]) >>> hermeint([1, 2, 3], m=2) # integrate twice, value & deriv 0 at 0 array([-0.25 , 1. , 0.5 , 0.33333333, 0.25 ]) # may vary >>> hermeint([1, 2, 3], k=1) # integrate once, value 1 at 0. array([2., 1., 1., 1.]) >>> hermeint([1, 2, 3], lbnd=-1) # integrate once, value 0 at -1 array([-1., 1., 1., 1.]) >>> hermeint([1, 2, 3], m=2, k=[1, 2], lbnd=-1) array([ 1.83333333, 0. , 0.5 , 0.33333333, 0.25 ]) # may vary
相关用法
- Python numpy hermite_e.hermediv用法及代码示例
- Python numpy hermite_e.hermefromroots用法及代码示例
- Python numpy hermite_e.hermeline用法及代码示例
- Python numpy hermite_e.hermeadd用法及代码示例
- Python numpy hermite_e.hermevander用法及代码示例
- Python numpy hermite_e.hermepow用法及代码示例
- Python numpy hermite_e.hermetrim用法及代码示例
- Python numpy hermite_e.hermezero用法及代码示例
- Python numpy hermite_e.hermex用法及代码示例
- Python numpy hermite_e.hermemulx用法及代码示例
- Python numpy hermite_e.hermeone用法及代码示例
- Python numpy hermite_e.hermeval用法及代码示例
- Python numpy hermite_e.hermesub用法及代码示例
- Python numpy hermite_e.hermefit用法及代码示例
- Python numpy hermite_e.hermedomain用法及代码示例
- Python numpy hermite_e.herme2poly用法及代码示例
- Python numpy hermite_e.hermeder用法及代码示例
- Python numpy hermite_e.hermemul用法及代码示例
- Python numpy hermite_e.hermeroots用法及代码示例
- Python numpy hermite_e.poly2herme用法及代码示例
- Python numpy hermite.hermfromroots用法及代码示例
- Python numpy hermite.hermline用法及代码示例
- Python numpy hermite.hermpow用法及代码示例
- Python numpy hermite.hermx用法及代码示例
- Python numpy hermite.hermmul用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.polynomial.hermite_e.hermeint。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。