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

    function tm = second(tt, varargin)
%SECOND Second numbers of tall array of datetimes.
%   Supported syntaxes:
%   M = SECOND(T)
%   M = SECOND(T,KIND)

%   Copyright 2015-2016 The MathWorks, Inc.
narginchk(1,2);
% Output always double regardless of KIND
tm = datetimePiece(mfilename, 'double', tt, varargin{:});
end