Poisson distribution and discrete distribution

12 visualizaciones (últimos 30 días)
Hozifa
Hozifa el 29 de Sept. de 2022
Respondida: Walter Roberson el 29 de Sept. de 2022
Hello guys,
I have two set of data, the first one I have to fit it to a Poisson distribution while the second one I have to fitted to a discrete distribution. Does any one know how to do it and how I can get the coefficients?
Thanks in advance
% I want to fit X to a Poisson distribution
x=[
5
16
43
25
19
5
3
];
X=x/sum(x);
bar(X)
figure
% I want to fit Y to a Discrete distribution
y=[
150
93
50
38
26
27
10
7
6
5
];
Y=y/sum(y);
bar(Y)
  1 comentario
Torsten
Torsten el 29 de Sept. de 2022
The Poisson distribution is a discrete distribution...

Iniciar sesión para comentar.

Respuestas (1)

Walter Roberson
Walter Roberson el 29 de Sept. de 2022
fitdist allows you to fit a distribution to data.
I want to fit Y to a Discrete distribution
There are an infinite number of different forms of discrete distribution; you are going to need to be more specific about what Discrete distribution means in this context.

Community Treasure Hunt

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

Start Hunting!

Translated by