本文简要介绍 python 语言中 scipy.special.fdtridfd
的用法。
用法:
scipy.special.fdtridfd(dfn, p, x, out=None) = <ufunc 'fdtridfd'>#
fdtr
与 dfd 的逆查找 F 密度参数 dfd 使得
fdtr(dfn, dfd, x) == p
。- dfn: array_like
第一个参数(正浮点数)。
- p: array_like
累积概率,在 [0, 1] 中。
- x: array_like
参数(非负浮点数)。
- out: ndarray,可选
函数值的可选输出数组
- dfd: 标量或 ndarray
dfd这样
fdtr(dfn, dfd, x) == p
.
参数 ::
返回 ::
例子:
计算一个参数集的 F 分布累积分布函数。
>>> from scipy.special import fdtridfd, fdtr >>> dfn, dfd, x = 10, 5, 2 >>> cdf_value = fdtr(dfn, dfd, x) >>> cdf_value 0.7700248806501017
验证
fdtridfd
恢复原始值dfd:>>> fdtridfd(dfn, cdf_value, x) 5.0
相关用法
- Python SciPy special.fdtri用法及代码示例
- Python SciPy special.fdtrc用法及代码示例
- Python SciPy special.fdtr用法及代码示例
- Python SciPy special.factorial用法及代码示例
- Python SciPy special.fresnel用法及代码示例
- Python SciPy special.factorial2用法及代码示例
- Python SciPy special.factorialk用法及代码示例
- 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用法及代码示例
- Python SciPy special.nbdtrik用法及代码示例
- Python SciPy special.nbdtrin用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.special.fdtridfd。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。