Post by AFAQ AHMADHi Ruben
Thanks for your question.
Please explain where I have to use "On the other hand, you can create your MLP and you can do later nn.inputs{1}.processFcns={} and nn.outputs{1}.processFcns={}." in the newff command or after training the network.
Regards
Afaq
This thread was started in May 2009 regarding version 2008b. Checking the help and doc documentation for 2014a
NEWFF Create a feed-forward back-propagation network.
Obsoleted in R2010b NNET 7.0. Last used in R2010a NNET 6.0.4.
The recommended function is FEEDFORWARDNET.
However, FEEDFORWARDNET is a generic function that is automatically called by the specialized functions FITNET (regression and curve-fitting) and PATTERNNET (classification and pattern-recognition)
Using FITNET as an example:
net = fitnet % No semicolon reveals
Post by AFAQ AHMADinputprocessFcns = net.input.processFcns
outputprocessFcns = net.output.processFcns
inputprocessFcns = 'removeconstantrows' 'mapminmax'
outputprocessFcns = 'removeconstantrows' 'mapminmax'
Therefore use the commands
net.inputprocessFcns = 'removeconstantrows' ;
net.outputprocessFcns = 'removeconstantrows' ;
similarly for PATTERNNET.
Hope this helps.
Greg