當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python SciPy special.stdtridf用法及代碼示例


本文簡要介紹 python 語言中 scipy.special.stdtridf 的用法。

用法:

scipy.special.stdtridf(p, t, out=None) = <ufunc 'stdtridf'>#

stdtr 與 df 的逆

返回參數 df 使得 stdtr(df, t) 等於p.

參數

p array_like

可能性

t array_like

積分的上限

out ndarray,可選

函數結果的可選輸出數組

返回

df 標量或 ndarray

的值df這樣stdtr(df, t) == p

例子

計算一個參數集的學生 t 累積分布函數。

>>> from scipy.special import stdtr, stdtridf
>>> df, x = 5, 2
>>> cdf_value = stdtr(df, x)
>>> cdf_value
0.9490302605850709

驗證stdtridf恢複原始值df給定 CDF 值和x.

>>> stdtridf(cdf_value, x)
5.0

相關用法


注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.special.stdtridf。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。