after modeling ANN, how to use the model
1 次查看(过去 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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!