本文简要介绍 python 语言中 scipy.special.bi_zeros
的用法。
用法:
scipy.special.bi_zeros(nt)#
计算艾里函数 Bi 及其导数的 nt 个零点和值。
计算 Airy 函数 Bi(x) 的前 nt 个零点 b;艾里函数 Bi'(x) 的导数的第一个 nt 个零点 b';对应的值 Bi(b');和相应的值 Bi'(b)。
- nt: int
要计算的零数
- b: ndarray
Bi(x) 的前 nt 个零点
- bp: ndarray
Bi'(x) 的前 nt 个零点
- bi: ndarray
Bi(x) 的值在 Bi'(x) 的第一个 nt 个零点处评估
- bip: ndarray
Bi'(x) 的值在 Bi(x) 的第一个 nt 个零处评估
参数 ::
返回 ::
参考:
[1]张善杰和金建明。 “特殊函数的计算”,John Wiley and Sons,1996 年。https://people.sc.fsu.edu/~jburkardt/f77_src/special_functions/special_functions.html
例子:
>>> from scipy import special >>> b, bp, bi, bip = special.bi_zeros(3) >>> b array([-1.17371322, -3.2710933 , -4.83073784]) >>> bp array([-2.29443968, -4.07315509, -5.51239573]) >>> bi array([-0.45494438, 0.39652284, -0.36796916]) >>> bip array([ 0.60195789, -0.76031014, 0.83699101])
相关用法
- Python SciPy special.binom用法及代码示例
- Python SciPy special.bdtri用法及代码示例
- Python SciPy special.boxcox1p用法及代码示例
- Python SciPy special.betaincinv用法及代码示例
- Python SciPy special.besselpoly用法及代码示例
- Python SciPy special.betainc用法及代码示例
- Python SciPy special.betainccinv用法及代码示例
- Python SciPy special.ber用法及代码示例
- Python SciPy special.bei用法及代码示例
- Python SciPy special.beta用法及代码示例
- Python SciPy special.betaincc用法及代码示例
- Python SciPy special.betaln用法及代码示例
- Python SciPy special.bernoulli用法及代码示例
- Python SciPy special.boxcox用法及代码示例
- Python SciPy special.exp1用法及代码示例
- Python SciPy special.expn用法及代码示例
- Python SciPy special.ncfdtri用法及代码示例
- Python SciPy special.gamma用法及代码示例
- Python SciPy special.y1用法及代码示例
- Python SciPy special.y0用法及代码示例
- Python SciPy special.ellip_harm_2用法及代码示例
- Python SciPy special.i1e用法及代码示例
- Python SciPy special.smirnovi用法及代码示例
- Python SciPy special.ker用法及代码示例
- Python SciPy special.ynp_zeros用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.special.bi_zeros。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。