after modeling ANN, how to use the model
조회 수: 3 (최근 30일)
이전 댓글 표시
답변 (1개)
Varun Sai Alaparthi
2022년 11월 23일
편집: Varun Sai Alaparthi
2022년 11월 23일
Once you have your trained net ‘net’ you can directly pass input to the net as shown in the code below
Y = net(x);
Where Y is the prediction or output from the net.
I hope this information helps and please reach out for any further issues.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!