PRNG均匀分布
有人可以帮我解决这个问题
给定 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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).