gusucode.com > bigdata 工具箱 matlab源码程序 > bigdata/@tall/aggregatefun.m

    function varargout = aggregatefun(perChunkFcn, reduceFcn, varargin)
%AGGREGATEFUN Helper that calls the underlying aggregatefun

%   Copyright 2015-2016 The MathWorks, Inc.
try
    [varargout{1:nargout}] = wrapUnderlyingMethod(@aggregatefun, ...
        {perChunkFcn, reduceFcn}, varargin{:});
catch err
    err = matlab.bigdata.internal.lazyeval.parseExecutionError(err);
    matlab.bigdata.BigDataException.hThrowAsCallerWithSubmissionStack(err);
end
end