Fit an equation with trained neural network
조회 수: 2 (최근 30일)
이전 댓글 표시
Hello,
How can I fit a trained neural network into an equation? Because modeling is worthless without an output equation.
Or what command should be used for a saved neural network with 4 variables (in command window)? I use "net(40,200,2,120)" but it makes a mistake.
댓글 수: 0
채택된 답변
Greg Heath
2018년 6월 2일
편집: Greg Heath
2018년 6월 2일
The single hidden layer feedforward net is a
UNIVERSAL APPROXIMATOR!
In the default mode it's equation is
y = B2 + LW*tanh(B1+IW*x)
help fitnet
doc fitnet
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!