How to identify the type of the Histogram distribution?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi All,
I have medical images,I've plotted it's histograms,now I need to identify the type of these histograms(e.g. One may be like Gaussian distribution, Normal distribution.etce...),is there a builtin Matlab function for * identify the type of Histogram distribution * or any code does that? my goal: I have two algorithms for image segmentation,so if the distribution was Gaussian type I will use the first algorithms else use the second algorithm,please any could guide me to do this job.thank in advance for time and support
댓글 수: 1
Walter Roberson
2014년 1월 16일
Duplicates http://www.mathworks.co.uk/matlabcentral/answers/112603-how-to-identify-the-type-of-the-histogram and further discussion should continue there.
답변 (1개)
Wayne King
2014년 1월 16일
You can use kstest() if you have the Statistics Toolbox:
x = 10+randn(1000,1);
test_cdf = makedist('normal','mu',10,'sigma',1);
[h,p] = kstest(x,'cdf',test_cdf);
댓글 수: 7
참고 항목
카테고리
Help Center 및 File Exchange에서 Histograms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!