Vector of estimates with estimate(.) function
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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
0 commentaires
Réponses (1)
Balaji
le 31 Oct 2023
Modifié(e) : Balaji
le 2 Jan 2024
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
0 commentaires
Voir également
Catégories
En savoir plus sur Conditional Mean Models dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!