本文介绍了生成具有概率的随机整数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我对如何生成具有概率的整数值感到困惑。
I'm a bit confused about how to generate integer values with probabilities.
例如,我有四个整数的概率值:1 | 0.4, 2 | 0.3,3 | 0.2,4 | 0.1
As an example, I have four integers with their probability values: 1|0.4, 2|0.3, 3|0.2, 4|0.1
如何在考虑其概率的情况下生成这四个数字?
How can I generate these four numbers taking into account their probabilities?
推荐答案
这是一个有用的技巧: - )
Here's a useful trick :-)
function randomWithProbability() {
var notRandomNumbers = [1, 1, 1, 1, 2, 2, 2, 3, 3, 4];
var idx = Math.floor(Math.random() * notRandomNumbers.length);
return notRandomNumbers[idx];
}
这篇关于生成具有概率的随机整数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!