How do I generate a sampled sequence with frequncy p(n)
7 ビュー (過去 30 日間)
古いコメントを表示
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
0 件のコメント
回答 (1 件)
Jos (10584)
2014 年 9 月 22 日
X = [10 20 30] % observations
p = [50 30 20] % (relative) probabilities
N = 20 ;
i = randp(p,1,N)
Sample = X(i)
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!