Java中不同分布范围内的随机数生成

发布于 2024-12-15 23:20:42 字数 142 浏览 1 评论 0原文

我想生成不同范围内的随机数。例如,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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤蝉 2024-12-22 23:20:42

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文