MATLAB: How to view number of iteration in neural network

classificationneural networknprtool

I have created Neural Network using npr tool. I want to number of iterations used in this network.

Best Answer

If you use the command line window, that and
other useful info is contained in the training
record tr:
[ net tr ] = train( net, x, t );
Just use
tr = tr % NO SEMICOLON!
Hope this helps.
Thank you for formally accepting my answer
Greg