Which Nonlinear Function isused in Nonlinear Autoregressive Neural Network(NARNET)?
4 views (last 30 days)
Show older comments
DWAIPAYAN GHOSH
on 14 Nov 2017
Commented: DWAIPAYAN GHOSH
on 14 Nov 2017
In am using NARNET for time series prediction. I want to know that which nonlinear function(i.e. sigmoid/tanh etc etc) is used in this case?
0 Comments
Accepted Answer
Greg Heath
on 14 Nov 2017
Edited: Greg Heath
on 14 Nov 2017
You can find any net quantity by consecutively investigating the results of using commands without ending semicolons. For example
net = narnet
net.layers
net.layers(:)
net.layers{:}
However, this question is more simply answered by just looking at the figure
net = narnet;
view(net)
Hope this helps.
Thank you for formally accepting my answer
Greg
More Answers (0)
See Also
Categories
Find more on Conditional Mean Models in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!