gpt4 book ai didi

java - commons-math3 中 ValueServer 的功能

转载 作者:行者123 更新时间:2023-12-01 10:02:11 25 4
gpt4 key购买 nike

在其中一个项目中使用了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;
}

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

找不到任何文档或解释。

任何人都可以帮助理解它的作用吗?

谢谢

最佳答案

它是可用于使用指定分布生成随机数的类。与其他生成器的主要区别在于,它还计算迄今为止生成的所有值的均值、众数、西格玛,因此您无需自己重新计算它们。

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

关于java - commons-math3 中 ValueServer 的功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36715579/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com