MATLAB: After training Neural Networks What next?

neural network start to work

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 .

Best Answer

No. Either the current syntax
y = net(x);
or the obsolete syntax
y = sim(net,x);
See the documentation
help fitnet
doc fitnet