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

    function tf = isweekend(tt)
%ISWEEKEND True for tall array of datetimes occurring on a weekend.
%   Supported syntaxes:
%   TF = ISWEEKEND(T)
%
%   See also DATETIME/ISWEEKEND.

%   Copyright 2015-2016 The MathWorks, Inc.

tf = datetimePiece(mfilename, 'logical', tt);
end