필터 지우기
필터 지우기

loading / calling a prepared Auto Regressive model in another for- loop

조회 수: 1 (최근 30일)
som
som 2012년 7월 23일
Hi all, I've written a program which generate an one-order Auto Regressive modele, named AR(1) model, for each month, i.e. t=1:12. The program is below:
clc; clear;
inflow='inflow.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/call constructed model named " ar_prmtr " for another loop. How can I load the " ar_prmtr " model ?
Any help would be appreciated.

답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by