What formula is used in curve fitting app; probability plot; extreme value?

1 view (last 30 days)
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!

Accepted Answer

Ahmet Cecen
Ahmet Cecen on 31 Jul 2014
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.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!