How to get the number of bin and bin edges from chi2gof test
이전 댓글 표시
Hi there,
I am fitting a chi squared distribution to data, could some tell me what is the correct syntax to return the number of bins and bin boundaries?
Many thanks
John
답변 (1개)
Vieniava
2012년 2월 7일
Use this kind
[h,p,stats] = chi2gof(...)
Then:
NumberOfBins = numel(stats.O);
And boundaries of i-th bin are:
BoundariesIth = [ stats.edges(i) stats.edges(i+1) ];
카테고리
도움말 센터 및 File Exchange에서 Noncentral t Distribution에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!