| mapminmax | Processes matrices by normalizing the minimum and maximum values of each row to [YMIN, YMAX]. |
| [Y, PS] | mapminmax (X, YMIN, YMAX): takes X and optional parameters. |
| X | N-by-Q matrix. |
| YMIN | Minimum value for each row if Y (default is −1). |
| YMAX | Maximum value for each row of Y (default is +1). |
| TFi | Transfer function of ith layer. Default is ‘tansig’ for hidden layers, and ‘purelin’ for output layer. |
| BTF | Backprop network training function, default = ‘trainlm’. |
| BLF | Backprop weight/bias learning function, default = ‘learngdm’. |
| PF | Performance function, default = ‘mse’. |
| IPF | Row cell array of input processing functions. Default is {‘fixunknowns’, ‘remconstantrows’, ‘mapminmax’}. |
| OPF | Row cell array of output processing functions. Default is {‘remconstantrows’, ‘mapminmax’}. |
| DDF | Data division function, default = ‘dividerand’. |