Info

This question is closed. Reopen it to edit or answer.

In neural networks fitting tool, Once a network is trained how can it be used to find new outputs from known inputs

2 views (last 30 days)
Once a network is trained how can it be used to find new outputs from known inputs

Answers (2)

Greg Heath
Greg Heath on 14 Oct 2014
Either
output = net(input) % current syntax
or
output = sim(net,input) % obsolete
Hope this help.
Thank you for formally accepting my answer
Greg

Star Strider
Star Strider on 10 Oct 2014
See the documentation for sim.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!