필터 지우기
필터 지우기

Forecasting with an AR(8) model

조회 수: 2 (최근 30일)
Panty
Panty 2014년 7월 9일
댓글: Shashank Prasanna 2014년 7월 14일
Hi, I am totally newly in Matlab and I have a question.
I have a time series and I want to apply an AR(8) model to forecast the next 12 observations.
I dont think that I could understand/follow the Mathworks instructions.
Any help??
Thank you!
  댓글 수: 7
Panty
Panty 2014년 7월 10일
By the way, do I need the 'System Identification Toolbox' for my case ???
I have the student version of Matlab&Simulink R2013a.
Panty
Panty 2014년 7월 11일
Guys.. Could you please help me??? I tried to wrote the script for what I wanted but I got some errors. Probably is wrong. I wrote the following: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
[rows,columns]=size(NEW_ROUTPUTQVQ196520014)
for column=1:columns
InSampleData=NEW_ROUTPUTQVQ196520014(1:end,column)
for periods_ahead = 1:12
Mdl=arima(2,0,0);
EstMdl = estimate(Mdl,InSampleData);
[Yhat] = forecast(m1,1);
Yhat=NEW_ROUTPUTQVQ196520014(end+1,column);
InSampleData=NEW_ROUTPUTQVQ196520014(1:end,column);
end;
end; %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
I am repeating these time-series forecating for all the columns of my dataset. I got the following error:
Error in End_of_sample_AR8_model (line 7) Mdl=arima(2,0,0);
Any help please??????
Much appreciated!!

댓글을 달려면 로그인하십시오.

채택된 답변

Shashank Prasanna
Shashank Prasanna 2014년 7월 9일
Have you seen the doc already? If you haven't here's the link to ARIMA models:
You can estimate your AR coefficients from data and then use the model to forecast. Give it a try and if you have specific question let us know.
  댓글 수: 6
Panty
Panty 2014년 7월 14일
Could you please check here??
I am repeating my issue with more details.. Can you please have a look?
Many thanks.
Shashank Prasanna
Shashank Prasanna 2014년 7월 14일
What is your question? What is the issue you are facing?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Preprocess Data에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by