scipy.special.log_wright_bessel#
- scipy.special.log_wright_bessel(a, b, x, out=None) = <ufunc 'log_wright_bessel'>#
Wright 广义贝塞尔函数的自然对数,请参阅
wright_bessel
。此函数特别适用于较大的 x 值。- 参数:
- afloat 类型的类数组
a >= 0
- bfloat 类型的类数组
b >= 0
- xfloat 类型的类数组
x >= 0
- outndarray,可选
用于函数结果的可选输出数组
- 返回:
- 标量或 ndarray
Wright 广义贝塞尔函数的对数值
说明
由于该函数及其三个参数的复杂性,仅实现了非负参数。
在 1.14.0 版本中添加。
示例
>>> from scipy.special import log_wright_bessel >>> a, b, x = 1.5, 1.1, 2.5 >>> log_wright_bessel(a, b, x) 1.1947654935299217