本文简要介绍 python 语言中 scipy.special.eval_chebyc
的用法。
用法:
scipy.special.eval_chebyc(n, x, out=None) = <ufunc 'eval_chebyc'>#
在 [-2, 2] 的一点上计算第一类切比雪夫多项式。
这些多项式定义为
其中 是第一类切比雪夫多项式。有关详细信息,请参见 [AS] 中的 22.5.11。
- n: array_like
多项式的次数。如果不是整数,则通过与
eval_chebyt
的关系确定结果。- x: array_like
计算切比雪夫多项式的点
- out: ndarray,可选
函数值的可选输出数组
- C: 标量或 ndarray
Chebyshev 多项式的值
参数 ::
返回 ::
参考:
[AS]Milton Abramowitz 和 Irene A. Stegun 合编。带有公式、图表和数学表格的数学函数手册。纽约:多佛,1972 年。
例子:
>>> import numpy as np >>> import scipy.special as sc
它们是第一类切比雪夫多项式的缩放版本。
>>> x = np.linspace(-2, 2, 6) >>> sc.eval_chebyc(3, x) array([-2. , 1.872, 1.136, -1.136, -1.872, 2. ]) >>> 2 * sc.eval_chebyt(3, x / 2) array([-2. , 1.872, 1.136, -1.136, -1.872, 2. ])
相关用法
- Python SciPy special.eval_chebys用法及代码示例
- Python SciPy special.eval_legendre用法及代码示例
- Python SciPy special.exp1用法及代码示例
- Python SciPy special.expn用法及代码示例
- Python SciPy special.ellip_harm_2用法及代码示例
- Python SciPy special.expit用法及代码示例
- Python SciPy special.expm1用法及代码示例
- Python SciPy special.ellip_normal用法及代码示例
- Python SciPy special.erfinv用法及代码示例
- Python SciPy special.erf用法及代码示例
- Python SciPy special.ellipj用法及代码示例
- Python SciPy special.erf_zeros用法及代码示例
- Python SciPy special.erfi用法及代码示例
- Python SciPy special.erfc用法及代码示例
- Python SciPy special.erfcx用法及代码示例
- Python SciPy special.expi用法及代码示例
- Python SciPy special.ellipe用法及代码示例
- Python SciPy special.exp10用法及代码示例
- Python SciPy special.exp2用法及代码示例
- Python SciPy special.erfcinv用法及代码示例
- Python SciPy special.elliprd用法及代码示例
- Python SciPy special.exprel用法及代码示例
- Python SciPy special.euler用法及代码示例
- Python SciPy special.errstate用法及代码示例
- Python SciPy special.ellip_harm用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.special.eval_chebyc。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。