How to forecast y(t+N) using removedelay function for NARX model
1 回表示 (過去 30 日間)
古いコメントを表示
In the Neural Network Toolbox there is a NARX model. After the model is created the model can be adjusted by “close” or “removedelay”.
When using “removedelay” there will be an one step ahead forecast: u(t) and y(t) resulting in y(t+1). So in principle y(t+1) is a forecast of one step ahead of the data. And this works well. However I would like to make a N step ahead forecast, y(t+N).
With the “removedelay” function there is a parameter to define N steps but when I define a number bigger than one I get an error message.
How can this be solve? What is the correct way to come to N-steps forecast for y(t+N)?
0 件のコメント
採用された回答
Greg Heath
2014 年 9 月 7 日
There seems to be a misconception:
An openloop feedback design is not deployable because it depends on target feedback.
Therefore, it is only a step in one way to obtain a closeloop design (The other way of course, is to use much more training time and design a closeloop design from scratch).
Consequently, the option close OR remove delay makes no sense unless it means to either
a. use remove delay before closing the loop.
b. use remove delay after closing the loop
Either way the end result is the same.
Removedelay(net,M) subtracts M from every component in ID and FD. Therefore the smallest components that can exist in ID and FD are M and M+1 ,respectively.
Hope this helps.
Thank you for formally accepting my answer
Greg
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Sequence and Numeric Feature Data Workflows についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!