MATLAB: Matlab: test data neural network wizard

neural networktoolbox

I want to use matlab out of the box NN wizard to solve a classification. How can I use back the NN generated from the wizard to test extra set of data? For example, initially I have 100 sample and put into the NN wizard to train. During the NN training, it will divide the 100 sample according to the configuration I have set. After the training end, how can I test another 50 newly created data using the same NN?

Best Answer

ynew = net(xnew);
Hope this helps.
Thank you for formally accepting my answer
Greg