Pick a number from an array with a certain probability

6 vues (au cours des 30 derniers jours)
S. B.
S. B. le 25 Mai 2020
Commenté : S. B. le 25 Mai 2020
Hi!
I have an array from 1 to 150 [1 2 3 ...]
and the corresponding probability [0.001 0.003 0.002 ...]
Now I'd like to pick a random number from the first array with taking into account the respective probability.
Has anyone an idea how to proceed?
Thanks!

Réponse acceptée

Ameer Hamza
Ameer Hamza le 25 Mai 2020
Modifié(e) : Ameer Hamza le 25 Mai 2020
If you can use pre-defined functions and you have Statistics and Machine Learning Toolbox, then you can use randsample(): https://www.mathworks.com/help/releases/R2020a/stats/randsample.html. Something like this
pop = 1:150;
prob = % probability values 1x150
y = randsample(pop, 1000, true, prob)
If you don't have the toolbox, then try following FEX packages:
  1 commentaire
S. B.
S. B. le 25 Mai 2020
I have it, and it worked perfectly, thank you!

Connectez-vous pour commenter.

Plus de réponses (1)

Image Analyst
Image Analyst le 25 Mai 2020
Is this homework? Sounds like it. See Wikipedia: https://en.wikipedia.org/wiki/Inverse_transform_sampling
Hint: use cumsum(probabililtyVector) and see if a random number is less than the cdf.
  1 commentaire
S. B.
S. B. le 25 Mai 2020
No, it's part of my thesis, and I'm working the first time with matlab, that's why it might sounded like a homework.
I've tried it with cumsum already, and with
V (v>=0 & v<0.0027)=0;
V(v>=0.0027 & v<0.0040)=1;
V(v>=0.0040 & v<0.0047)=2;...
but for so many probabilities it is too much work, especially if the probabilities might change again.
But thanks, anyway!

Connectez-vous pour commenter.

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by