www.gusucode.com > nnet 工具箱 matlab 源码程序 > nnet/nnprocess/+removeconstantrows/dx_dy.m

    function d = dx_dy(x,y,settings)
%REMOVECONSTANTROWS.DX_DY Derivatives of input with respect to output

% Copyright 2012-2015 The MathWorks, Inc.

  d = removeconstantrows.dy_dx(x,y,settings);
  d = cellfun( @ctranspose, d, 'UniformOutput', false );
end