Vector of estimates with estimate(.) function

조회 수: 3 (최근 30일)
Miguel Santana
Miguel Santana 2016년 11월 6일
편집: Balaji 2024년 1월 2일
I've been trying to retrieve the vector of parameter estimates from an arima model estimated with the Econometrics Toolbox so I can perform a Wald test for global significance. How can I do it? i.e., I would like to do something of the type:
Mdl1 = estimate(Mdl,y)
CoeffMdl = Mdl1.Coefficients.Estimate

답변 (1개)

Balaji
Balaji 2023년 10월 31일
편집: Balaji 2024년 1월 2일
Hi Miguel
The code you have proposed for extracting the vector of parameter estimates from an ARIMA model appears to be accurate and should be functional as intended.
Mdl1 = estimate(Mdl, y);
CoeffMdl = Mdl1.Coefficients.Estimate;
Thanks,
Balaji

카테고리

Help CenterFile Exchange에서 Conditional Mean Models에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by