Effacer les filtres
Effacer les filtres

loading an prepared Auto Regressive model in another for- loop

1 vue (au cours des 30 derniers jours)
som
som le 17 Juil 2012
Hi all,
I've written a program which generate an one-order Auto Regressive modele AR(1), named ar_prmtr model here, for each month, i.e. t=1:12. The program is below:
clc; clear;
inflow='inflow_23_YEAR.txt';
inflow=load(inflow);
for t=1:12
q=inflow(:,t);
%%%%%%GENERATION OF AUTO-REGRESSIVE MODEL
ar_prmtr= ar(q(:,t),1)
present(ar_prmtr);
end
I want to use constructed model named " ar_prmtr " for another loop. How can I load the " ar_prmtr " model ?
Any help would be appreciated.

Réponses (0)

Catégories

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

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by