PHP 在 24 小时时间段内的高斯分布

发布于 2024-07-06 13:32:59 字数 41 浏览 6 评论 0原文

如何在高斯分布分布的 24 小时周期内设置点? 比如高峰在10点?

How can I set points on a 24h period spreaded by the Gaussian distributions? For example to have the peak at 10 o'clock?

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

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

发布评论

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

评论(2

哭了丶谁疼 2024-07-13 13:32:59

以下代码生成以给定时间为中心并具有给定标准差的高斯分布随机时间(以小时为单位,加上一小时的小数部分)。 随机时间可能会“环绕”时钟,特别是如果标准偏差是几个小时:这是正确处理的。 如果您的标准偏差非常大(很多天),则不同的“包装”算法可能会更有效,但无论如何,在这种情况下分布几乎是均匀的。

$peak=10; // Peak at 10-o-clock
$stdev=2; // Standard deviation of two hours
$hoursOnClock=24; // 24-hour clock

do // Generate gaussian variable using Box-Muller
{
    $u=2.0*mt_rand()/mt_getrandmax()-1.0;
    $v=2.0*mt_rand()/mt_getrandmax()-1.0;
    $s = $u*$u+$v*$v;
} while ($s > 1);
$gauss=$u*sqrt(-2.0*log($s)/$s);

$gauss = $gauss*$stdev + $peak; // Transform to correct peak and standard deviation

while ($gauss < 0) $gauss+=$hoursOnClock; // Wrap around hours to keep the random time 
$result = fmod($gauss,$hoursOnClock);     // on the clock

echo $result;

The following code generates a gaussian distributed random time (in hours, plus fractions of an hour) centered at a given time, and with a given standard deviation. The random times may 'wrap around' the clock, especially if the standard deviation is several hours: this is handled correctly. A different 'wrapping' algorithm may be more efficient if your standard deviations are very large (many days), but the distribution will be almost uniform in this case, anyway.

$peak=10; // Peak at 10-o-clock
$stdev=2; // Standard deviation of two hours
$hoursOnClock=24; // 24-hour clock

do // Generate gaussian variable using Box-Muller
{
    $u=2.0*mt_rand()/mt_getrandmax()-1.0;
    $v=2.0*mt_rand()/mt_getrandmax()-1.0;
    $s = $u*$u+$v*$v;
} while ($s > 1);
$gauss=$u*sqrt(-2.0*log($s)/$s);

$gauss = $gauss*$stdev + $peak; // Transform to correct peak and standard deviation

while ($gauss < 0) $gauss+=$hoursOnClock; // Wrap around hours to keep the random time 
$result = fmod($gauss,$hoursOnClock);     // on the clock

echo $result;
女皇必胜 2024-07-13 13:32:59

如果您在生成高斯分布随机点时遇到问题,请查找 http://en.wikipedia.org/wiki /Box-Muller_transform

否则请澄清您的问题。

If you have trouble generating gaussian distributed random points look up http://en.wikipedia.org/wiki/Box-Muller_transform

Else please clarify your question.

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