scipy.special.log_wright_bessel#
- scipy.special.log_wright_bessel(a, b, x, out=None) = <ufunc 'log_wright_bessel'>#
Wright 广义贝塞尔函数的自然对数,请参见
wright_bessel
。该函数尤其适用于较大的 x 值。- 参数:
- aarray_like of float
a >= 0
- barray_like of float
b >= 0
- xarray_like of float
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