What formula is used in curve fitting app; probability plot; extreme value?
조회 수: 11 (최근 30일)
이전 댓글 표시
Is it some kind of general probability formula or one of Gumbel distributions..? I tried to find out if matlab would somewhere tell what formulas it uses in these ready-made apps, but I didnt find anything..
Thanks for your answers!
댓글 수: 0
채택된 답변
Ahmet Cecen
2014년 7월 31일
I am assuming you are either referring to cftool or dfittool. If you wnat to find out how the functions work, go to "File" and click "Generate Code". Then in the generated code go to the section where you are curious about, For example the extreme value fit uses:
fitdist(a, 'extreme value');
If you check the documentation for fitdist, you can find the documentation for individual fit modules. In this case I did:
then in there under dist name distname go to->
under which there is an explicit formula, as well as detailed documentation.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!