本文簡要介紹 python 語言中 scipy.special.hyperu
的用法。
用法:
scipy.special.hyperu(a, b, x, out=None) = <ufunc 'hyperu'>#
合流超幾何函數 U
它被定義為方程的解
滿足屬性
作為 。有關詳細信息,請參閱 [dlmf]。
- a, b: array_like
實值參數
- x: array_like
實值參數
- out: ndarray,可選
函數值的可選輸出數組
- 標量或 ndarray
U的值
參數 ::
返回 ::
參考:
[dlmf]NIST 數學函數數字 Library https://dlmf.nist.gov/13.2#E6
例子:
>>> import numpy as np >>> import scipy.special as sc
它有一個沿負 x 軸切割的分支。
>>> x = np.linspace(-0.1, -10, 5) >>> sc.hyperu(1, 1, x) array([nan, nan, nan, nan, nan])
當 x 趨於無窮時,它接近於零。
>>> x = np.array([1, 10, 100]) >>> sc.hyperu(1, 1, x) array([0.59634736, 0.09156333, 0.00990194])
它滿足了庫默的轉變。
>>> a, b, x = 2, 1, 1 >>> sc.hyperu(a, b, x) 0.1926947246463881 >>> x**(1 - b) * sc.hyperu(a - b + 1, 2 - b, x) 0.1926947246463881
相關用法
- Python SciPy special.hyp1f1用法及代碼示例
- Python SciPy special.hyp2f1用法及代碼示例
- Python SciPy special.hyp0f1用法及代碼示例
- Python SciPy special.h1vp用法及代碼示例
- Python SciPy special.hankel1e用法及代碼示例
- Python SciPy special.hankel2e用法及代碼示例
- Python SciPy special.huber用法及代碼示例
- Python SciPy special.h2vp用法及代碼示例
- Python SciPy special.hermite用法及代碼示例
- Python SciPy special.exp1用法及代碼示例
- Python SciPy special.expn用法及代碼示例
- Python SciPy special.ncfdtri用法及代碼示例
- Python SciPy special.gamma用法及代碼示例
- Python SciPy special.y1用法及代碼示例
- Python SciPy special.y0用法及代碼示例
- Python SciPy special.ellip_harm_2用法及代碼示例
- Python SciPy special.i1e用法及代碼示例
- Python SciPy special.smirnovi用法及代碼示例
- Python SciPy special.ker用法及代碼示例
- Python SciPy special.ynp_zeros用法及代碼示例
- Python SciPy special.k0e用法及代碼示例
- Python SciPy special.j1用法及代碼示例
- Python SciPy special.logsumexp用法及代碼示例
- Python SciPy special.expit用法及代碼示例
- Python SciPy special.polygamma用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.special.hyperu。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。