How to get standard errors from estimated arima?

Hiya, When executing the following code the command window will display the estimated parameters + standard errors. The coefficients can be obtained from EstMdl but I cannot find a way to obtain the shown standard errors. Maye someone can help me out - Thanks in advance!
/Jack
Mdl= arima('ARLags',1,'SARLags',12);
[EstMdl,EstSE,logL,info] = estimate(Mdl,data)

1 件のコメント

s z
s z 2018 年 1 月 12 日
編集済み: s z 2018 年 1 月 13 日
Found the solution! take sqrt of diagonal EstSE..

サインインしてコメントする。

回答 (1 件)

Raul Andres Lopez Romero
Raul Andres Lopez Romero 2018 年 7 月 10 日

0 投票

For infer the residuals you need to use the 'infer' function over your ARIMA model try this:
residuals=infer(EstMdl,data)
If you want the 'standarized residuals' you need to do this:
stdresiduals=residuals./sqrt(EstMdl.Variance)

カテゴリ

ヘルプ センター および File ExchangeConditional Mean Models についてさらに検索

質問済み:

s z
2018 年 1 月 12 日

回答済み:

2018 年 7 月 10 日

Community Treasure Hunt

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

Start Hunting!

Translated by