How to code a function of the Probability mass function of the Poisson binomial distribution
3 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I want to use a function that computes the Probability mass function of the Poisson binomial distribution \Pr(K=k)=\sum \limits {{A\in F{k}}}\prod \limits {{i\in A}}p{i}\prod \limits {{j\in A^{c}}}(1-p{j}) https://en.wikipedia.org/wiki/Poisson_binomial_distribution
But how do I implement this sum over subsets of {1,..,n} that contain k elements
Thank you, Daniel
0 件のコメント
採用された回答
Peng Liu
2016 年 10 月 6 日
You may use nchoosek. F_k is nothing but a k-element subset of {1,2,3,...,n}. The sum is over all possible F_k, which can be generated using F_k = nchoosek(1:n,k) (where each row of F_k is a k-element subset)
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!