0

我想了解如何生成概率分布。我正在研究随机最短路径问题,其中边缘具有相关的概率分布以及每个概率的相关成本。我能够生成这样的(正态)分布:

0     1     2     3     4
0.15  0.2   0.18  0.22  0.25

使得所有概率的总和为 1,遵循此问题中提供的答案。现在,我需要生成其他分布,如双正态、对数正态和伽玛。我非常感谢对这些发行版和(伪)代码(最好是在 Java 中)生成它们的任何澄清。

4

2 回答 2

4

正态分布: http ://commons.apache.org/proper/commons-math/apidocs/org/apache/commons/math3/distribution/NormalDistribution.html

日志正态分布: http ://commons.apache.org/proper/commons-math/apidocs/org/apache/commons/math3/distribution/LogNormalDistribution.html

伽玛分布: http ://commons.apache.org/proper/commons-math/apidocs/org/apache/commons/math3/distribution/GammaDistribution.html

我会远离 100% 自制的解决方案,比如你提到的问题。

这是一些生成分布的代码。您必须自己对它们进行标准化,以使总和为 1。

import org.apache.commons.math3.distribution.AbstractRealDistribution;
import org.apache.commons.math3.distribution.NormalDistribution;
import org.apache.commons.math3.distribution.LogNormalDistribution;
import org.apache.commons.math3.distribution.GammaDistribution;

public class DistributionGenerator {

    public static void main(String[] args) {

    // Pick one and comment out the others:
    //AbstractRealDistribution distr = new NormalDistribution(2.0,0.5);  //  mean and standard deviation constructor.
    //AbstractRealDistribution distr = new LogNormalDistribution(0.0,1.0); // scale and shape constructor.
    AbstractRealDistribution distr = new GammaDistribution(2.0, 1.0);

    for(int i=0; i<5; ++i)
    {
        System.out.println( distr.density(i));
    }
    }
    }
于 2015-11-16T07:43:25.053 回答
2

快速搜索显示Colt 库及其分布类套件。

于 2015-11-16T07:44:23.190 回答