MATLAB: How to determine mean, standard deviation, minimum and maximum value of each type input and output in training, testing and validation data set, If i consider divide it randomly

neural networkneural networks

How can I determine mean, standard deviation, minimum and maximum value of each type input and output in training, testing and validation data set, If i consider Dividerand?

Best Answer

[ net tr y e ] = train(net,x,t);
Obtain trnind, valind and tstind from tr. To see how to do this, just
type, without the ending semicolon,
tr = tr
Hope this helps,
Greg
Thank you for formally accepting my answer
Greg