我一直在查看apache commons math的文档,发现它也可以计算分布,但是我不知道它是如何工作的。
我有两个值
我的问题是它不能产生我需要的值, 目的是:
结果= 1.771
import org.apache.commons.math3.distribution.TDistribution
fun calculo(a:Double, b:Double): Double {
val distf = TDistribution(a,b)
return distf.getNumericalMean()
}
fun main(args: Array<String>) {
val ko = calculo(13,0.95)
println(ko)
}
```
答案 0 :(得分:1)
您可以使用以下内容:
new org.apache.commons.math3.distribution.TDistribution(deg_freedom).
inverseCumulativeProbability(probability)
其中deg_freedom = 13,概率为0.95。