Advertisement
Sri27119

poisson distribution

May 19th, 2024
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.20 KB | None | 0 0
  1. lambda = 20; % number found in fixed volume
  2. x = 5; % number under study
  3. Px = poisscdf(x,lambda); % P(sample is less than x)
  4.  
  5. plot(0:20,poisspdf(0:20,lambda));
  6. title("POISSON DISTRIBUTION CURVE");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement