本文简要介绍 python 语言中 numpy.polynomial.chebyshev.chebdiv
的用法。
用法:
polynomial.chebyshev.chebdiv(c1, c2)
将一个切比雪夫级数除以另一个。
返回两个切比雪夫级数的quotient-with-remainderc1/c2。参数是从最低阶 “term” 到最高阶的系数序列,例如,[1,2,3] 表示序列
T_0 + 2*T_1 + 3*T_2
.- c1, c2: array_like
切比雪夫级数系数的一维数组从低到高排序。
- [quo, rem]: ndarray
代表商和余数的切比雪夫级数系数。
参数:
返回:
注意:
通常,一个C-series 的(多项式)除以另一个会产生不在切比雪夫多项式基组中的商和余项。因此,要将这些结果表示为C-series,通常需要将结果“reproject” 放到所述基组上,这通常会产生“unintuitive”(但正确)结果;请参阅下面的示例部分。
例子:
>>> from numpy.polynomial import chebyshev as C >>> c1 = (1,2,3) >>> c2 = (3,2,1) >>> C.chebdiv(c1,c2) # quotient "intuitive," remainder not (array([3.]), array([-8., -4.])) >>> c2 = (0,1,2,3) >>> C.chebdiv(c2,c1) # neither "intuitive" (array([0., 2.]), array([-2., -4.]))
相关用法
- Python numpy chebyshev.chebder用法及代码示例
- Python numpy chebyshev.chebdomain用法及代码示例
- Python numpy chebyshev.chebsub用法及代码示例
- Python numpy chebyshev.cheb2poly用法及代码示例
- Python numpy chebyshev.chebx用法及代码示例
- Python numpy chebyshev.chebmul用法及代码示例
- Python numpy chebyshev.chebroots用法及代码示例
- Python numpy chebyshev.chebtrim用法及代码示例
- Python numpy chebyshev.chebone用法及代码示例
- Python numpy chebyshev.chebint用法及代码示例
- Python numpy chebyshev.chebadd用法及代码示例
- Python numpy chebyshev.chebline用法及代码示例
- Python numpy chebyshev.chebfromroots用法及代码示例
- Python numpy chebyshev.chebfit用法及代码示例
- Python numpy chebyshev.chebzero用法及代码示例
- Python numpy chebyshev.chebpow用法及代码示例
- Python numpy chebyshev.chebmulx用法及代码示例
- Python numpy chebyshev.chebinterpolate用法及代码示例
- Python numpy chebyshev.poly2cheb用法及代码示例
- Python numpy chararray.ndim用法及代码示例
- Python numpy chararray.nbytes用法及代码示例
- Python numpy chararray.setflags用法及代码示例
- Python numpy chararray.flat用法及代码示例
- Python numpy chararray.strides用法及代码示例
- Python numpy chararray.view用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.polynomial.chebyshev.chebdiv。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。