After training Neural Networks What next??

1 view (last 30 days)
Hello..
My Question is: After training Neural Networks, Can I use the function sim like example: Y = sim(net) for the NN starts to work ??
Thanks .

Accepted Answer

Greg Heath
Greg Heath on 30 Dec 2015
No. Either the current syntax
y = net(x);
or the obsolete syntax
y = sim(net,x);
See the documentation
help fitnet
doc fitnet

More Answers (0)

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!