Which Nonlinear Function isused in Nonlinear Autoregressive Neural Network(NARNET)?
조회 수: 1 (최근 30일)
이전 댓글 표시
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
채택된 답변
Greg Heath
2017년 11월 14일
편집: Greg Heath
2017년 11월 14일
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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Signal Modeling에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!