Java中不同分布范围内的随机数生成
我想生成不同范围内的随机数。例如,Java 中的范围 10^14 具有不同的分布,如对数、正态、二项式等。是否有任何特定的库相同。我发现关于 colt 和 math 的讨论不常见图书馆。但是生成 int 形式的值然后乘以相应的范围后缀是否足够安全。相同的最佳实践是什么。
I want to generate Random number in different range. For example range 10^14 in Java with different distribution like log, normal, binomial etc. Is there any particular library for the same. I found discussion on colt and math uncommon library. But is it safe enough to generate values as int and then multiply by the corresponding range suffix. What is best practice for the same.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Apache Commons Math 有一个 RandomDataImpl 执行 nextBinomial、nextExponential 和其他一些类型的类(不幸的是,在我的头顶上)。
希望这能为您提供所需的一切。您可能需要检查库中的一些其他类。
Apache Commons Math has a RandomDataImpl class that does nextBinomial, nextExponential and some other types (above my head unfortunately).
Hopefully that gets you everything you need. You might need to check some of the other classes in the library.