scipy.special.log_wright_bessel#
- scipy.special.log_wright_bessel(a, b, x, out=None) = <ufunc 'log_wright_bessel'>#
Wright 廣義 Bessel 函數的自然對數,請參閱
wright_bessel
。此函數在 x 值較大時特別方便。- 參數:
- aarray_like of float
a >= 0
- barray_like of float
b >= 0
- xarray_like of float
x >= 0
- outndarray,可選
函數結果的可選輸出陣列
- 返回:
- 純量或 ndarray
Wright 廣義 Bessel 函數的對數值
註解
由於此函數及其三個參數的複雜性,僅實作非負參數。
在版本 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