How to calculate the (odd ,even) condition in the following Poisson distribution for p_z parameter? i need some help in the code bellow

1 vue (au cours des 30 derniers jours)
Sofy
Sofy le 12 Juil 2019
Commenté : Rik le 15 Juil 2019
when q=[0.1,0.2,0.3,0.4,0.5] and p =1-q, z=6
  6 commentaires
Torsten
Torsten le 12 Juil 2019
And what are q_1, p_1, q_2, p_2 ? In your case q_1 = 0.1, p_1 = 0.9, q_2 = 0.2, p_2 = 0.8 ?

Connectez-vous pour commenter.

Réponses (1)

Torsten
Torsten le 12 Juil 2019
Modifié(e) : Torsten le 12 Juil 2019
function main
p1 = 0.9;
p2 = 0.8;
q1 = 1-p1;
q2 = 1-p2;
z = 6;
vec = zeros(1,z);
vec(1:2:end) = q1/p1;
vec(2:2:end) = q2/p2;
lambda = sum(vec);
terms_right = [1-fliplr(cumprod(vec)), 0];
terms_left = lambda.^(0:z)./factorial(0:z);
P_z = 1 - exp(-lambda)*sum(terms_left.*terms_right)
end

Catégories

En savoir plus sur Mathematics 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