描述
BETA.INV函数返回beta累积概率密度函数(BETA.DIST)的反函数。如果概率= BETA.DIST(x ... TRUE),则BETA.INV(概率...)= x。
在预期的完成时间和可变性的情况下,可以在项目计划中使用beta分布来建模可能的完成时间。
语法
BETA.INV (probability,alpha,beta,[A],[B])
争论
Argument | 描述 | Required/Optional |
---|---|---|
Probability | A probability associated with the beta distribution. | Required |
Alpha | A parameter of the distribution. | Required |
Beta | A parameter of the distribution. | Required |
A | A lower bound to the interval of x. | Optional |
B | An upper bound to the interval of x. | Optional |
Notes
如果省略A和B的值,则BETA.INV使用标准的累积beta分布,因此A=0和B=1
如果有任何非数字参数,则BETA.INV返回#VALUE!。错误值。
如果alpha≤0或beta≤0,则BETA.INV返回#NUM!。错误值。
If probability ≤ 0 or probability > 1, BETA.INV returns the #NUM! error value.
如果A和B相等,则BETA.INV返回#NUM!。错误值。
-
给定概率值,BETA.INV会求出该值x
BETA.DIST(x,alpha,beta,TRUE,A,B)=概率
因此,BETA.INV的精度取决于BETA.DIST的精度。
适用性
Excel 2010,Excel 2013,Excel 2016
Example
参考链接
https://www.learnfk.com/javascript/advanced-excel-statistical-betainv-function.html
标签:Required,DIST,probability,INV,JavaScript,BETA,无涯,beta From: https://blog.51cto.com/u_14033984/7541296