scipy.special.log_wright_bessel#
- scipy.special.log_wright_bessel(a, b, x, out=None) = <ufunc 'log_wright_bessel'>#
Wright 广义贝塞尔函数的自然对数,参见
wright_bessel
。此函数特别适用于 x 值较大时。- 参数:
- a浮点数组
a >= 0
- b浮点数组
b >= 0
- x浮点数组
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