Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Anylogic 中存档以下内容:我有几个进程都以某种方式分布。这些分布涉及随机数生成。
据我了解,anylogic 创建了一个随机数流,任何进程都可以从中获取随机数。但实际上我希望每个进程都有另一个随机数流。任何人都知道如何做到这一点?
我希望你明白我想要做什么,并且你能够帮助我。
您可以像这样创建自己的随机数生成器:Random rng1 = new Random();并在这样的分布中使用它们uniform(2,5,rng1)。这样 rng1 被用作随机数流而不是默认流。
Random rng1 = new Random();
uniform(2,5,rng1)