作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在其中一个项目中使用了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;
}
这里传递的参数是文件路径和随机数。
找不到任何文档或解释。
任何人都可以帮助理解它的作用吗?
谢谢
最佳答案
它是可用于使用指定分布生成随机数的类。与其他生成器的主要区别在于,它还计算迄今为止生成的所有值的均值、众数、西格玛,因此您无需自己重新计算它们。
关于java - commons-math3 中 ValueServer 的功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36715579/
在其中一个项目中使用了commons-math3-3.3.jar。这个jar有ValueServer的概念。有代码 private static ValueServer getValueServer(
我是一名优秀的程序员,十分优秀!