How to get the number of bin and bin edges from chi2gof test
2 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
回答(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) ];
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!