本文简要介绍 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
相关用法
- Python SciPy special.stdtrit用法及代码示例
- Python SciPy special.stdtr用法及代码示例
- Python SciPy special.struve用法及代码示例
- Python SciPy special.stirling2用法及代码示例
- Python SciPy special.smirnovi用法及代码示例
- Python SciPy special.seterr用法及代码示例
- Python SciPy special.shichi用法及代码示例
- Python SciPy special.smirnov用法及代码示例
- Python SciPy special.softmax用法及代码示例
- Python SciPy special.sinc用法及代码示例
- Python SciPy special.sindg用法及代码示例
- Python SciPy special.spherical_kn用法及代码示例
- Python SciPy special.spherical_yn用法及代码示例
- Python SciPy special.sici用法及代码示例
- Python SciPy special.spherical_in用法及代码示例
- Python SciPy special.spherical_jn用法及代码示例
- Python SciPy special.spence用法及代码示例
- 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用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.special.stdtridf。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。