Adjusting delays in a NARX neural network
2 ビュー (過去 30 日間)
古いコメントを表示
The NARX provided by the MATLAB toolbox defines y(t) as a function of past inputs and outputs:
y(t) = f(x(t-1), ... ,x(t-d),y(t-1), ... ,y(t-d))
The standard definition of NARX defines y(t) as a function of past and present inputs and past outputs:
y(t) = f( x(t) ,x(t-1), ... ,x(t-d),y(t-1), ... ,y(t-d))
I have attached a picture to illustrate my question.
What is the MATLAB command to modify the input TDL of my existing NARX model to accomidate the present input?
My illustration shows [0:6], but any help is appreciated to achieve similar results such as [0:5], etc.
0 件のコメント
採用された回答
その他の回答 (1 件)
Greg Heath
2015 年 2 月 19 日
MATLAB Toolbox yields the standard dependence on the present input indicated by a 0 input delay. However, feedback delays must be positive.
Hope this helps.
Thank you for formally accepting my answer
Greg
2 件のコメント
Greg Heath
2015 年 2 月 23 日
I explained in my answer that the MATLAB software does support ID >= 0. However FD must be > 0.
In other words:
Software OK
Documentation LACKING
Greg
参考
カテゴリ
Help Center および File Exchange で Nonlinear ARX Models についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!