Hi all please i need to know how to generate a Poisson distributed number using the built-in function (poissrnd).use this command to generate 5000 numbers and use maxlikelihood estimate for poission distribution to complete its means

1 view (last 30 days)
Hi all please i need to know how to generate a Poisson distributed number using the built-in function (poissrnd).use this command to generate 5000 numbers and use maxlikelihood estimate for poission distribution to complete its means
  9 Comments
Adam
Adam on 23 Apr 2019
Please don't use flags to respond to comments - they are for highlighting spam or other inappropriate content, not for adding comments.

Sign in to comment.

Accepted Answer

Adam Danz
Adam Danz on 23 Apr 2019
Moved: Sabin on 23 Dec 2022
That's not how I interpreted part-1 of your problem.
" i need to know how to generate a Poisson distributed number using the built-in function (poissrnd).use this command to generate 5000 numbers "
I suppose you should choose one value for your lambda and create 5000 random poisson numbers based on that single lambda.
lambda = 100;
r = poissrnd(lambda, 1,5000);
histogram(r) %look at the distribution (centered at lambda)
190423 105417-Figure 1.jpg
Part-2 of your assigment is to "use maxlikelihood estimate for poission distribution to complete its means"
To achieve that, follow the recommendations by Torsten to read the documentation for poissfit().

More Answers (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!