Which methods used in the "unifit" function to estimate interval estimation

2 ビュー (過去 30 日間)
Young Jin Kang
Young Jin Kang 2017 年 2 月 1 日
回答済み: Young Jin Kang 2017 年 2 月 14 日
Hellow
"[ahat, bhat, ACI, BCI]=unifit(data)" returns point estimators(ahat,bhat) and interval estimators(ACI, BCI).
I know that an "unifit" function uses the maximum likelihood estimates to estimate "ahat" and "bhat".
Which method uses in the unifit function to calculate interval estimators, "ACI" and "BCI"? There are no references in this code.
Thank you.

回答 (2 件)

Shubham Srivastava
Shubham Srivastava 2017 年 2 月 13 日
Hi,
Following formula is used to calculate the confidence intervals.
>>ssz = numel(data)/numel(ahat);
>>tmp = (bhat - ahat)./alpha.^(1./ssz);
>>aci = [bhat - tmp; ahat];
>>bci = [bhat; ahat + tmp];
where ahat and bhat are the maximul likelihood estimates.
The file unifit.m contains the above lines to calculate them.
Regards,
Shubham

Young Jin Kang
Young Jin Kang 2017 年 2 月 14 日
Thank you for your answer.

カテゴリ

Help Center および File ExchangeBiomedical Signal Processing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by