How do I generate a sampled sequence with frequncy p(n)
Afficher commentaires plus anciens
I have a 1xn vector of observations X(n)and a vector of probabilities p(n). How do I simulate sampling from this distribution where the frequency of picking observation x(n) is proportional to p(n)? Thanks
Réponses (1)
Jos (10584)
le 22 Sep 2014
X = [10 20 30] % observations
p = [50 30 20] % (relative) probabilities
N = 20 ;
i = randp(p,1,N)
Sample = X(i)
Catégories
En savoir plus sur Multivariate Distributions dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!