Poisson distribution and discrete distribution
조회 수: 1 (최근 30일)
이전 댓글 표시
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
답변 (1개)
Walter Roberson
2022년 9월 29일
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.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!