MATLAB: How to use the already trained neural network

neural networktoolbox

I recently used Neural Network toolbox from Matlab to train a neural network for detecting violence in movies. After training the network and obtaining a good performance I've been searching for the function that let me use the network and I can't find it. Can you help me on using the network after training it?
PS: I just want to try the network giving one input and getting an output

Best Answer

y = net(x)
where net is your trained network and x is your new input.