MATLAB: How to test a large data set(excelsheet) on a neural network?and how to save a trained network to test it in future with new data

saving and testing ann

how a trained network can be used to test new inputs and oututs on which it was not trained

Best Answer

load savednet
newoutput = savednet(newinput);
Thank you for formally accepting my answer
Greg