scipy.special.log_wright_贝塞尔#
- 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
- 出ndarray,可选
函数结果的可选输出数组
- 返回:
- 标量或ndarray
Wright 广义贝塞尔函数对数的值
注释
由于该函数具有三个参数的复杂性,仅实现了非负参数。
Added in version 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