cumulative distribution function Trinomial Distribution
Afficher commentaires plus anciens
%Hello every one,
how i can calculate cumulative distribution function(cdf) for Trinomial Distribution
function ff=myTrinomial(n,p01,p02)
sum=zeros;
for x=0:n
for y=0:n-x
ff(x+1,y+1)=(factorial(n)/(factorial(x)*factorial(y)*factorial(n-x-y)))*p01^x*p02^y*(1-p01-p02)^(n-x-y);
% ff(x+1,y+1)=1-sum(x+2,y+2) end % b=cumsum(ff) end
Réponses (0)
Catégories
En savoir plus sur Binomial Distribution 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!