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

    function h = height(tt)
%HEIGHT Number of rows in tall table
%   H = HEIGHT(TT) returns the number of rows of TT as H. H is a tall array.
%
%   See also: tall/width, tall.

%   Copyright 2015-2016 The MathWorks, Inc.

tt = tall.validateType(tt, mfilename, {'table'}, 1);

h = size(tt, 1);
end