How can I get the function y(t) from NARX problem in Neural Network Time Series Tool?
1 回表示 (過去 30 日間)
古いコメントを表示
How can I get the function y(t) from NARX problem in Neural Network Time Series Tool?
0 件のコメント
採用された回答
Greg Heath
2016 年 4 月 25 日
Since your model is not nonlinear, just use NARXNET with no hidden nodes.
X = con2seq(giveninput);
T = con2seq(giventarget);
net = narx(1:2,1:2,[]);
The rest follows from the documentation examples
help narxnet
doc narxet
Hope this helps
Thank you for formally accepting my answer
Greg
0 件のコメント
その他の回答 (1 件)
Greg Heath
2016 年 4 月 21 日
See one of my Narx posts in the NEWSGROUP or ANSWERS:
greg narnet
Hope this helps.
Thank you for formally accepting my answer
Greg
3 件のコメント
Greg Heath
2016 年 4 月 24 日
Not exactly sure what you mean by "the" coefficients. The net is a nonlinear transformation. The coefficients corresponding to the inputs of the hidden node neurons are given by the input weight matrix IW = net.IW.
Hope this helps.
Thank you for formally accepting my answer
Greg
参考
カテゴリ
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!