Probability in random numbers!

How to create a random 2D array that each cell has different probabilities to be either 0 or 1 for example? In other words, how to t create a 2D array with each cell having a probability of 0.1 to be 1's and 0.9 probability to be 0's.

回答(2 个)

Adam Danz
Adam Danz 2019-8-5
编辑:Adam Danz 2019-8-7
randsrc(5,4,[[0,1];[.9,.1]])
% 5 x 4 array
% .9 prob. of 0
% .1 prob of 1
*Requires communications toolbox

3 个评论

Here's a little test to see if the probabilities are roughly correct. Run this line lots of times and the values should all hover around 10% since there's a 10% probability of 1 and 90% propbability of 0.
mean(randsrc(10000000,1,[[0,1];[.9,.1]]))
It keeps on telling me I need a communications toolbox.
Use Walter Roberson's answer if you don't have communications toolbox.

请先登录,再进行评论。

类别

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by