フィルターのクリア

chi square PDF fitting

3 ビュー (過去 30 日間)
Mark Golberg
Mark Golberg 2018 年 9 月 27 日
回答済み: Jeff Miller 2018 年 9 月 28 日
Hello,
similar to how I can use fit function with fittype = 'exp1' to find the best f(x)=a*exp(b*x) to match my distribution,
how can I find the best chi square PDF to match my distribution?
By chi square pdf I mean as it defined in: Y = chi2pdf(X,V).
If in exp case I could have the [a,b] that would give me the best fit, here I'm searching for the best V that would give me the best fit.
Thanks!

回答 (1 件)

Jeff Miller
Jeff Miller 2018 年 9 月 28 日
Cupid will fit the chi-square distribution. For example, if you have a vector of scores, x, from the distribution to be fit, you can get a maximum-likelihood fit with:
mydist = ChiSq(round(mean(x)); % A good starting value.
mydist.EstML(x) % Will adjust V up or down to improve max-likelihood fit.

Community Treasure Hunt

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

Start Hunting!

Translated by