本文简要介绍 python 语言中 numpy.polynomial.legendre.legder
的用法。
用法:
polynomial.legendre.legder(c, m=1, scl=1, axis=0)
区分勒让德系列。
返回勒让德级数系数c差异化的m时间一起轴。每次迭代时,结果都会乘以scl(比例因子用于变量的线性变化)。参数c是沿每个轴从低到高的系数数组,例如,[1,2,3] 表示系列
1*L_0 + 2*L_1 + 3*L_2
而 [[1,2],[1,2]] 表示1*L_0(x)*L_0(y) + 1*L_1(x)*L_0(y) + 2*L_0(x)*L_1(y) + 2*L_1(x)*L_1(y)
如果轴 = 0 是x
和轴= 1 是y
.- c: array_like
勒让德级数系数数组。如果 c 是多维的,则不同的轴对应于不同的变量,每个轴的度数由相应的索引给出。
- m: 整数,可选
所取导数的数量必须是非负的。 (默认值:1)
- scl: 标量,可选
每个微分乘以scl。最终结果是乘以
scl**m
。这用于变量的线性变化。 (默认值:1)- axis: 整数,可选
求导数的轴。 (默认值:0)。
- der: ndarray
勒让德系列的导数。
参数:
返回:
注意:
一般而言,勒让德级数的微分结果与幂级数上的相同运算不同。因此这个函数的结果可能是“unintuitive,”,尽管它是正确的;请参阅下面的示例部分。
例子:
>>> from numpy.polynomial import legendre as L >>> c = (1,2,3,4) >>> L.legder(c) array([ 6., 9., 20.]) >>> L.legder(c, 3) array([60.]) >>> L.legder(c, scl=-1) array([ -6., -9., -20.]) >>> L.legder(c, 2,-1) array([ 9., 60.])
相关用法
- Python numpy legendre.legdomain用法及代码示例
- Python numpy legendre.legdiv用法及代码示例
- Python numpy legendre.legint用法及代码示例
- Python numpy legendre.legmulx用法及代码示例
- Python numpy legendre.legroots用法及代码示例
- Python numpy legendre.legfromroots用法及代码示例
- Python numpy legendre.leg2poly用法及代码示例
- Python numpy legendre.legone用法及代码示例
- Python numpy legendre.legmul用法及代码示例
- Python numpy legendre.legadd用法及代码示例
- Python numpy legendre.legline用法及代码示例
- Python numpy legendre.legx用法及代码示例
- Python numpy legendre.legtrim用法及代码示例
- Python numpy legendre.legfit用法及代码示例
- Python numpy legendre.legsub用法及代码示例
- Python numpy legendre.legzero用法及代码示例
- Python numpy legendre.poly2leg用法及代码示例
- Python numpy less用法及代码示例
- Python numpy lexsort用法及代码示例
- Python numpy left_shift用法及代码示例
- Python numpy less_equal用法及代码示例
- Python numpy linalg.svd用法及代码示例
- Python numpy laguerre.lagone用法及代码示例
- Python numpy linalg.pinv用法及代码示例
- Python numpy logaddexp用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.polynomial.legendre.legder。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。