ValueServer在commons-math3中的功能

时间:2016-04-19 10:23:11

标签: java apache-commons-math

在其中一个项目中使用了commons-math3-3.3.jar。这个jar有ValueServer的概念。 有代码

private static ValueServer getValueServer(final File file, final int count)
                throws ZeroException, NullArgumentException, IOException {
                ValueServer vServer = new ValueServer();
                vServer.setValuesFileURL(file.toURI().toURL());
                vServer.setMode(ValueServer.DIGEST_MODE);
                vServer.computeDistribution(count);

                return vServer;
            }

这里传递的参数是文件路径和随机数。

无法找到任何文件或说明。

任何人都可以帮助理解这一点。

由于

1 个答案:

答案 0 :(得分:1)

它是可用于使用指定分布生成随机数的类。与其他生成器的主要区别在于它还计算了它到目前为止生成的所有值的均值,模式,sigma,因此您不需要自己重新计算它们。

源代码非常易于阅读https://commons.apache.org/proper/commons-math/jacoco/org.apache.commons.math3.random/ValueServer.java.html