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

    function ts = datestr(varargin)
%DATESTR convert tall array to character representation of date.
%   Supported syntaxes for tall DATETIME:
%   C = DATESTR(T)
%   S = DATESTR(T,F)
%
%   Supported syntaxes for tall array:  
%   S = DATESTR(V)
%   S = DATESTR(N)
%   S = DATESTR(D,F)
%   S = DATESTR(S1,F,P)
%   S = DATESTR(...,'local')
%
%   See also DATETIME/DATESTR, DATESTR.

%   Copyright 2015 The MathWorks, Inc.

narginchk(1,4);
ts = slicefun(@datestr, varargin{:});
end