필터 지우기
필터 지우기

FGLS innovations covariance estimator

조회 수: 1 (최근 30일)
Fernando Cardoso
Fernando Cardoso 2019년 5월 2일
답변: Balaji 2023년 11월 7일
Can I get the fgls function to return the innovations covariance matrix used in estimation?

답변 (1개)

Balaji
Balaji 2023년 11월 7일
Hi Fernando,
The `fgls` function does not directly provide the option to return the innovations covariance matrix used in estimation. However, you can compute the innovations covariance matrix manually using the residuals obtained from the `fgls` estimation.
Here's an example of how you can compute the innovations covariance matrix:
Mdl1 = fgls(Mdl, y);
residuals = Mdl1.Residuals.Raw;
innovationsCov = cov(residuals);
Thanks,
Balaji

카테고리

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

태그

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by