我想了解如何生成概率分布。我正在研究随机最短路径问题,其中边缘具有相关的概率分布以及每个概率的相关成本。我能够生成这样的(正态)分布:
0 1 2 3 4
0.15 0.2 0.18 0.22 0.25
使得所有概率的总和为 1,遵循此问题中提供的答案。现在,我需要生成其他分布,如双正态、对数正态和伽玛。我非常感谢对这些发行版和(伪)代码(最好是在 Java 中)生成它们的任何澄清。
我想了解如何生成概率分布。我正在研究随机最短路径问题,其中边缘具有相关的概率分布以及每个概率的相关成本。我能够生成这样的(正态)分布:
0 1 2 3 4
0.15 0.2 0.18 0.22 0.25
使得所有概率的总和为 1,遵循此问题中提供的答案。现在,我需要生成其他分布,如双正态、对数正态和伽玛。我非常感谢对这些发行版和(伪)代码(最好是在 Java 中)生成它们的任何澄清。
我会远离 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));
}
}
}