MATLAB: Neural network performance graph

MATLABneural network

Hi,
Could you please help me?
I had created a neural network by Matlab ANN toolbox and my network obtained MSE of 0.008 . I saved the workspace containing the network and variables. Now after some months i need to see its performance graph, the mse versus the epoch for my previously trained network. What command would help me have such thing?

Best Answer

You can also recreate the training graph if you have saved the training history tr obtained from
[net tr ]= train(net,x,t);
Type
tr = tr
for details.
Hope this helps.
Thank you for formally accepting my answer.
Greg