Effacer les filtres
Effacer les filtres

FGLS innovations covariance estimator

1 vue (au cours des 30 derniers jours)
Fernando Cardoso
Fernando Cardoso le 2 Mai 2019
Can I get the fgls function to return the innovations covariance matrix used in estimation?

Réponses (1)

Balaji
Balaji le 7 Nov 2023
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

Catégories

En savoir plus sur Conditional Mean Models dans Help Center et File Exchange

Tags

Produits


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by