Matlab AR command for creating the model of predicting kstep ahead prediction

I want to use AR model as a predictor, and for that matlab AR function is used.But there is problem, this function only has the ability to create model for predicting one step ahead directly and for other steps it predicts recursively. If I can use my own pairs of input and output and use the AR it will be solved,but it is not possible for AR function in matlab, because it is capable to have only the time series as an input. IS there any way for solving this problem? Thanks in advance for your suggestions.

 Accepted Answer

Maybe you are looking for ARX (autoregressive with exogenous inputs). You can fit an ARX model using either the Econometrics or the System Id Toolbox:

5 Comments

Thanks for your response. You know, I think there is some misconception for me about AR model. The delay between input and output can be more than 1 step?
You can specify any number of lags. Take a look at the documentation link and try to run some of the examples, it will be come clear.
You are right, I can different lags for both input and output pairs. But my problem is not in number of lags, I want to have model such that:
y(t+2)=a(1)u(t-1)+a(2)u(t-2)+...+a(p)u(t-p)
rather than
y(t)=a(1)u(t-1)+a(2)u(t-2)+...+a(p)u(t-p)
and not:
y(t)+b(1)y(t-1)+b(2)y(t-2)+..=a(1)u(t-1)+a(2)u(t-2)+...+a(p)u(t-p)
My problem is having different step a head output(y(t),y(t+10),..), not lag on it, with the same input pairs.
You are right. My problem has been solved. Thanks a lot for your help.
What was the solution for this? Can you provide some code?

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!