gusucode.com > bigdata 工具箱 matlab源码程序 > bigdata/+matlab/+bigdata/+internal/+util/isGathered.m

    function tf = isGathered(partitionedArray)
%isGathered Is a partitioned array already gathered.
%   TF = isGathered(PA) returns TRUE if PartitionedArray PA has already been
%   gathered.

% Copyright 2016 The MathWorks, Inc.

tf = partitionedArray.ValueFuture.IsDone;
end