当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python SciPy special.spherical_in用法及代码示例


本文简要介绍 python 语言中 scipy.special.spherical_in 的用法。

用法:

scipy.special.spherical_in(n, z, derivative=False)#

第一类修正球贝塞尔函数或其导数。

定义为[1],

其中 是第一类修正贝塞尔函数。

参数

n 整数,数组

Bessel 函数的阶数 (n >= 0)。

z 复数或浮点数,数组

贝塞尔函数的参数。

derivative 布尔型,可选

如果为 True,则返回导数(而不是函数本身)的值。

返回

in ndarray

注意

该函数是使用其与第一类修正圆柱贝塞尔函数的定义关系来计算的。

使用关系 [2] 计算导数,

参考

[AS]

Milton Abramowitz 和 Irene A. Stegun 合编。带有公式、图表和数学表格的数学函数手册。纽约:多佛,1972 年。

例子

第一类 的修正球面贝塞尔函数接受实数和复数第二个参数。他们可以返回一个复杂的类型:

>>> from scipy.special import spherical_in
>>> spherical_in(0, 3+5j)
(-1.1689867793369182-1.2697305267234222j)
>>> type(spherical_in(0, 3+5j))
<class 'numpy.complex128'>

我们可以在区间 中验证 的注释导数的关系:

>>> import numpy as np
>>> x = np.arange(1.0, 2.0, 0.01)
>>> np.allclose(spherical_in(3, x, True),
...             spherical_in(2, x) - 4/x * spherical_in(3, x))
True

前几个 带有真实参数:

>>> import matplotlib.pyplot as plt
>>> x = np.arange(0.0, 6.0, 0.01)
>>> fig, ax = plt.subplots()
>>> ax.set_ylim(-0.5, 5.0)
>>> ax.set_title(r'Modified spherical Bessel functions $i_n$')
>>> for n in np.arange(0, 4):
...     ax.plot(x, spherical_in(n, x), label=rf'$i_{n}$')
>>> plt.legend(loc='best')
>>> plt.show()
scipy-special-spherical_in-1.png

相关用法


注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.special.spherical_in。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。