PRNG均匀分布

发布于 2024-11-15 22:04:54 字数 175 浏览 3 评论 0原文

有人可以帮我解决这个问题

给定 X 台生成消息的服务器和 T 秒的模拟持续时间,每个服务器应以什么时间间隔生成消息,以便平均有 200 条消息/秒生成。

使用 PRNG,我在 T 秒内为每个 X 服务器生成了时间间隔的均匀分布,但是我如何确保这些间隔会导致每秒 200 条消息?

谢谢你,

Can someone please help me wrap my head around this problem

Given X number of servers that generate some message and a simulation duration of T seconds, at what time intervals should each server generate a message, so that on an average, there are 200 messages/sec generated.

Using a PRNG, i generated a uniform distribution of time intervals for each X server over T seconds, but how do i ensure that these intervals would result in 200 messages per second?

Thank you,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

半城柳色半声笛 2024-11-22 22:04:54

T 有多重要? 每个服务器每秒应统一生成 200/X 条消息。要生成时间表,请从 [0, 1) 上的均匀分布中抽取 200/X 个样本,并相应地对消息计时(每秒重复一次,或立即从 [0,T) 中抽取 200T/X 个样本)。

How is T important? Each server should generate 200/X messages per second, uniformly. To generate a schedule, draw 200/X samples from a uniform distribution on [0, 1) and time the messages accordingly (and repeat every second, or draw 200T/X samples from [0,T) right away).

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