MATLAB: In a Neural Network, how the network object can be used to calculate the network response to any input

Deep Learning Toolboxneural network

in a Neural Network, how the network object can be used to calculate the network response to any input? How can I get the values of that response?

Best Answer

output = net(input).
%output = sim(net,input) is now obsolete