www.gusucode.com > nnet 工具箱 matlab 源码程序 > nnet/nnderivative/+nnet/+mode/+matlab/processInput.m

    function x = processInput(x,i,hints)
%PROCESSINPUT Preprocess an input

% Copyright 2015 The MathWorks, Inc.

  for j=1:hints.numInpProc(i)
    x = hints.inp(i).procApply{j}(x,hints.inp(i).procSet{j});
  end
end